-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 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
{
"name": "network-clients",
"private": true,
"workspaces": {
"packages": [
"clients/*",
"packages/*"
]
},
"scripts": {
"build": "npm run build --workspaces",
"clean": "npm run clean --workspaces",
"generate-client": "npm run generate-client --workspaces",
"lint": "npm run lint --workspaces",
"lint:check": "npm run lint:check --workspaces",
"prepare": "husky install",
"release": "npm run release --workspaces",
"type-check": "npm run type-check --workspaces",
"version": "npx changeset version && npx changeset add --empty && npm i"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@eslint/js": "^9.39.1",
"@rosen-bridge/changeset-formatter": "^2.0.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jscodeshift": "^0.11.6",
"@types/node": "^22.18.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.4.0",
"husky": "^8.0.1",
"jscodeshift": "^0.14.0",
"knip": "^5.69.0",
"lint-staged": "^13.0.3",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22.18.0",
"npm": "11.6.2"
}
}