-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 953 Bytes
/
package.json
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
{
"private": true,
"name": "@xyd-js/project",
"engines": {
"pnpm": ">=9",
"node": ">=20.17.0"
},
"packageManager": "[email protected]",
"scripts": {
"build": "./build.sh",
"watch": "pnpm build && pnpm run --filter=\"./packages/**/*\" --parallel build --watch",
"build:gql": "pnpm run --filter=\"./packages/xyd-gql\" build",
"build:uniform": "pnpm run --filter=\"./packages/xyd-uniform\" build",
"build:atlas-storybook": "pnpm run --filter=\"./packages/xyd-atlas\" build-storybook",
"watch_old": "pnpm -r watch",
"clean": "./clear.sh",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/node": "20.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"rimraf": "^3.0.2",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.{js,ts,cjs,mjs,md,json,jsonc}": "biome ci --no-errors-on-unmatched"
}
}