-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.05 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.05 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
{
"name": "nx-cloud-workflows",
"private": true,
"license": "MIT",
"scripts": {
"prepare": "husky",
"build-all": "node scripts/build-all.js"
},
"packageManager": "pnpm@10.33.0",
"volta": {
"node": "22.20.0",
"pnpm": "10.33.0"
},
"dependencies": {
"@bufbuild/connect": "^0.13.0",
"@bufbuild/connect-web": "^0.13.0",
"@bufbuild/protobuf": "^1.10.1",
"@types/node": "^22.19.17"
},
"devDependencies": {
"@nx/conformance": "^5.0.2",
"@nx/js": "22.6.4",
"esbuild": "0.25.11",
"glob": "13.0.6",
"husky": "9.1.7",
"jest": "30.2.0",
"lint-staged": "16.2.4",
"nx": "22.6.4",
"prettier": "3.6.2",
"ts-jest": "29.4.5",
"ts-node": "^10.9.2",
"typescript": "5.9.3",
"yaml": "^2.8.3"
},
"lint-staged": {
"*.{ts,js,json,md}": [
"npx prettier --write"
]
},
"pnpm": {
"overrides": {
"axios@>=1.0.0 <1.15.0": "^1.15.0",
"esbuild@<0.25.0": "^0.25.0",
"follow-redirects@<1.16.0": "^1.16.0",
"minimatch@>=9.0.0 <9.0.7": "^9.0.7"
}
}
}