-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "web3auth-backend",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Monorepo for web3 auth backend packages",
"scripts": {
"publish:lerna": "npm run clean && npm install && lerna publish",
"just:publish:lerna": "lerna publish",
"clean": "lerna clean --yes && lerna exec -- rimraf .rollup.cache/ tsconfig.build.tsbuildinfo dist/ .rts2_cache_{cjs,esm}/ web3auth-*.tgz .eslintcache",
"build": "cross-env FORCE_COLOR=1 lerna run --stream build",
"dev": "lerna run dev --parallel",
"test": "cross-env FORCE_COLOR=1 lerna run test --parallel",
"test-debugger": "cross-env FORCE_COLOR=1 lerna run test-debugger --parallel",
"lint": "cross-env FORCE_COLOR=1 lerna run lint --parallel",
"type-check": "cross-env FORCE_COLOR=1 lerna run type-check --parallel",
"pack:lerna": "lerna exec 'npm pack'",
"pre-commit": "lerna run pre-commit",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Web3Auth/web3auth-backend.git"
},
"devDependencies": {
"@rollup/plugin-replace": "^6.0.3",
"@toruslabs/config": "^4.0.1",
"@toruslabs/eslint-config-node": "^5.0.2",
"@toruslabs/torus-scripts": "^8.1.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"eslint": "^9.33.0",
"husky": "^9.1.7",
"jsonwebtoken": "^9.0.3",
"lerna": "^9.0.7",
"lint-staged": "^17.0.7",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Web3Auth/web3auth-backend/issues"
},
"homepage": "https://github.com/Web3Auth/web3auth-backend#readme",
"lint-staged": {
"*": "lerna run --concurrency 1 --stream --since HEAD --exclude-dependents pre-commit -- "
},
"engines": {
"node": ">=22.x",
"npm": ">=10.x"
},
"overrides": {
"@sentry/core": "^10.38.0"
}
}