-
Notifications
You must be signed in to change notification settings - Fork 242
/
package.json
42 lines (42 loc) · 1.43 KB
/
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
33
34
35
36
37
38
39
40
41
42
{
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "is-ci || husky install",
"setup": "nx run-many --target=setup",
"dev": "nx run-many --target=dev --parallel=100",
"lint": "nx run-many --target=lint",
"test": "nx run-many --target=test",
"ci": "nx affected --target=lint:js,lint:css,lint:format,test --nx-bail=true",
"build": "nx run-many --target=build --nx-bail=true",
"serve": "nx run-many --target=serve",
"fix": "nx run-many --target=lint:js,lint:css -- --fix; nx run-many --target=lint:format -- --write",
"format-all": "prettier --write '**/src/**/*.{html,js,jsx,ts,tsx,css,less,json}' **/*.md",
"bootstrap": "pnpm install && pnpm run setup",
"clean": "pnpm -s dlx rimraf -g './node_modules' '**/node_modules' './apps/*/dist' './packages/*/dist'"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@antv/config-eslint": "workspace:^",
"@antv/config-stylelint": "workspace:^",
"dotenv-cli": "^7.1.0",
"eslint": "^8.35.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.5.0",
"lint-staged": "^13.1.2",
"nx": "^15.8.6",
"prettier": "^2.8.4",
"stylelint": "^15.2.0",
"tsup": "^6.7.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.19.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@antv/x6-plugin-dnd": "^2.0.5"
}
}