package.json 3.62 KB
Newer Older
Deshui Yu's avatar
Deshui Yu committed
1
{
2
  "name": "nni-webui",
Deshui Yu's avatar
Deshui Yu committed
3
  "version": "0.1.0",
4
  "license": "MIT",
Deshui Yu's avatar
Deshui Yu committed
5
  "dependencies": {
6
    "axios": "^0.21.1",
7
8
9
10
11
12
    "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",
    "case-sensitive-paths-webpack-plugin": "2.2.0",
13
    "copy-to-clipboard": "^3.0.8",
14
    "css-loader": "2.1.1",
15
    "d3": "^5.16.0",
16
17
    "dotenv": "6.2.0",
    "dotenv-expand": "4.2.0",
18
19
    "echarts": "^5.0",
    "echarts-for-react": "3.0.0",
20
21
22
23
24
    "file-loader": "3.0.1",
    "fs-extra": "7.0.1",
    "html-webpack-plugin": "4.0.0-beta.5",
    "identity-obj-proxy": "3.0.0",
    "is-wsl": "^1.1.0",
25
26
27
28
    "jest": "24.7.1",
    "jest-environment-jsdom-fourteen": "0.1.0",
    "jest-resolve": "24.7.1",
    "jest-watch-typeahead": "0.3.0",
chicm-ms's avatar
chicm-ms committed
29
    "json5": "^2.1.1",
30
31
32
33
34
    "mini-css-extract-plugin": "0.5.0",
    "monaco-editor": "^0.19.0",
    "monaco-editor-webpack-plugin": "^1.8.1",
    "node-sass": "^4.13.0",
    "optimize-css-assets-webpack-plugin": "5.0.1",
35
    "parcoord-es": "^2.2.10",
36
37
38
39
40
41
    "pnp-webpack-plugin": "1.2.1",
    "postcss-flexbugs-fixes": "4.1.0",
    "postcss-loader": "3.0.0",
    "postcss-normalize": "7.0.1",
    "postcss-preset-env": "6.6.0",
    "postcss-safe-parser": "4.0.1",
42
    "react": "^16.8.6",
43
    "react-app-polyfill": "^1.0.0",
44
    "react-dev-utils": "^11.0.4",
45
    "react-dom": "^16.8.6",
46
    "react-json-tree": "^0.11.2",
47
    "react-monaco-editor": "^0.32.1",
48
    "react-paginate": "^6.3.2",
49
    "react-responsive": "^8.1.1",
50
51
    "react-router": "^5.2.0",
    "react-router-dom": "^5.2.0",
52
53
54
55
56
57
58
59
60
61
62
    "react-table": "^7.0.0-rc.15",
    "resolve": "1.10.0",
    "sass-loader": "7.1.0",
    "semver": "6.0.0",
    "style-loader": "0.23.1",
    "terser-webpack-plugin": "1.2.3",
    "url-loader": "1.1.2",
    "webpack": "4.29.6",
    "webpack-dev-server": "3.2.1",
    "webpack-manifest-plugin": "2.0.4",
    "workbox-webpack-plugin": "4.2.0"
Deshui Yu's avatar
Deshui Yu committed
63
64
  },
  "devDependencies": {
65
    "@babel/core": "7.4.3",
66
    "@fluentui/react": "^7.135.0",
67
    "@svgr/webpack": "4.1.0",
68
    "@types/d3": "^5.7.2",
69
    "@types/jest": "24.0.12",
chicm-ms's avatar
chicm-ms committed
70
    "@types/json5": "^0.0.30",
71
72
73
    "@types/node": "^10.14.2",
    "@types/react": "16.8.15",
    "@types/react-dom": "16.8.4",
chicm-ms's avatar
chicm-ms committed
74
75
    "@typescript-eslint/eslint-plugin": "^2.11.0",
    "@typescript-eslint/parser": "^2.11.0",
76
    "concurrently": "^5.2.0",
77
    "eslint": "^5.16.0",
78
    "eslint-config-prettier": "^6.1.0",
79
80
81
82
83
    "eslint-config-react-app": "^4.0.0",
    "eslint-loader": "2.1.2",
    "eslint-plugin-flowtype": "2.50.1",
    "eslint-plugin-import": "2.16.0",
    "eslint-plugin-jsx-a11y": "6.2.1",
84
    "eslint-plugin-prettier": "^3.1.0",
85
86
    "eslint-plugin-react": "7.12.4",
    "eslint-plugin-react-hooks": "^1.5.0",
87
    "express": "^4.17.1",
liuzhe-lz's avatar
liuzhe-lz committed
88
    "npx": "^10.2.0",
89
90
91
    "prettier": "^1.18.2",
    "stylelint": "^13.7.0",
    "stylelint-config-standard": "^20.0.0",
92
    "typescript": "^3.8.0"
93
  },
94
  "proxy": "http://localhost:12138",
95
  "scripts": {
chicm-ms's avatar
chicm-ms committed
96
97
98
    "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",
99
    "eslint": "npx eslint ./ --ext .tsx,.ts",
100
    "stylelint": "npx stylelint **/*{.css,.scss}",
101
102
    "mock": "node scripts/server.js",
    "dev": "concurrently \"yarn mock\" \"yarn start\""
103
  },
104
105
106
107
108
109
  "eslintConfig": {
    "extends": "react-app"
  },
  "browserslist": [
    "defaults"
  ],
110
111
112
113
  "babel": {
    "presets": [
      "react-app"
    ]
liuzhe-lz's avatar
liuzhe-lz committed
114
115
  },
  "resolutions": {
liuzhe-lz's avatar
liuzhe-lz committed
116
    "npm": ">=6.14.4",
117
118
119
120
121
    "yargs": ">=16.0.3",
    "acorn": ">=8.0.4",
    "node-forge": ">=0.10.0",
    "y18n": ">=5.0.5",
    "serialize-javascript": ">=5.0.1"
122
  }
123
}