-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
43
44
45
46
47
48
49
50
51
52
{
"name": "nni-webui",
"version": "0.1.0",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"babel-eslint": "10.0.1",
"babel-jest": "24.7.1",
"babel-loader": "8.0.5",
"babel-plugin-named-asset-import": "^0.3.2",
"babel-preset-react-app": "^8.0.0",
"workbox-webpack-plugin": "4.2.0"
},
"devDependencies": {
"@babel/core": "7.15.3",
"@svgr/webpack": "4.13.0",
"@types/d3": "^5.9.2",
"typescript": "^3.20.0"
},
"proxy": "http://localhost:12138",
"scripts": {
"start": "node --max-old-space-size=3072 scripts/start.js",
"build": "node --max-old-space-size=3072 scripts/build.js",
"test": "node --max-old-space-size=3072 scripts/test.js",
"eslint": "npx eslint ./ --ext .tsx,.ts",
"stylelint": "npx stylelint **/*{.css,.scss}",
"mock": "node scripts/server.js",
"dev": "concurrently \"yarn mock\" \"yarn start\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"defaults"
],
"babel": {
"presets": [
"react-app"
]
},
"resolutions": {
"npm": ">=6.14.4",
"yargs": ">=16.0.3",
"acorn": ">=8.0.4",
"node-forge": ">=0.10.0",
"y18n": ">=5.0.5",
"serialize-javascript": ">=5.0.1"
},
"jest": {
"verbose": true
}
}