-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
39 lines (39 loc) · 1.32 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
{
"name": "nop-chaos",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@7.1.0",
"workspaces": [
"packages/*"
],
"description": "Nop Platform Frontend",
"scripts": {
"all": "pnpm -r all",
"dev": "pnpm -F nop-site dev",
"build": "pnpm -r build",
"build-sdk": "pnpm -F nop-core build & pnpm -F nop-react-core build & pnpm -F nop-graph-designer build & pnpm -F nop-flow-builder build & pnpm -F nop-amis-ext build & pnpm -F nop-amis-vue build & pnpm -F sdk build",
"build-designer": "pnpm -F nop-graph-designer build & pnpm -F nop-flow-builder build & pnpm -F nop-amis-ext build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "pnpm -F nop-site preview",
"test": "pnpm -r test",
"clean": "pnpm -r clean",
"clean:all": "pnpm --package=rimraf -s dlx rimraf pnpm-lock.yaml **/dist **/node_modules",
"reinstall": "pnpm clean:all && pnpm i",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
"esbuild": "^0.17.11",
"eslint": "^8.31.0",
"eslint-plugin-cypress": "^2.12.1",
"typescript": "^4.9.4",
"vite": "^4.4.9"
},
"//": "use bin-wrapper-china to install gifslice package when network issue occurs",
"pnpm": {
"overrides": {
"bin-wrapper": "npm:bin-wrapper-china"
}
}
}