forked from umijs/umi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.16 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
{
"name": "@example/plugin-antd-e2e",
"private": true,
"author": "pshu <[email protected]>",
"scripts": {
"build": "umi build",
"cypress:ci": "pnpm umi-scripts cypress",
"dev": "umi dev",
"e2e": "cypress run",
"e2e:ci": "cross-env HMR=none PORT=8000 start-server-and-test dev http://localhost:8000/__umi/api/status cypress:ci",
"set:mfsu:eager:esbuild": "umi config set mfsu {\\\"strategy\\\":\\\"eager\\\",\\\"esbuild\\\":true}",
"set:mfsu:eager:webpack": "umi config set mfsu {\\\"strategy\\\":\\\"eager\\\"}",
"set:mfsu:normal:esbuild": "umi config set mfsu {\\\"strategy\\\":\\\"normal\\\",\\\"esbuild\\\":true}",
"set:mfsu:normal:webpack": "umi config set mfsu {\\\"strategy\\\":\\\"normal\\\"}",
"setup": "umi setup",
"start": "npm run dev"
},
"dependencies": {
"antd": "^5.6.0-alpha.0",
"lodash.uppercase": "^4.3.0",
"moment": "^2.29.4",
"umi": "workspace:*"
},
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"cross-env": "^7.0.3",
"cypress": "^12.6.0",
"rimraf": "3.0.2",
"start-server-and-test": "^1.15.2",
"wait-on": "^6.0.1"
}
}