-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.2 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "efos_pc",
"version": "0.1.0",
"private": true,
"port": 3000,
"page": "",
"scripts": {
"start": "webpack-dev-server --open",
"build": "webpack --config webpack.prod.js",
"watch": "webpack --watch",
"server": "node server.js",
"test": "webpack --config webpack.test.js --display errors-only --debug"
},
"dependencies": {
"@types/react": "^16.4.13",
"@types/react-dom": "^16.0.7",
"antd": "^3.8.4",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"handlebars": "^4.0.11",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-loadable": "^5.5.0",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"awesome-typescript-loader": "^5.2.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.5",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-import": "^1.8.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"csv-loader": "^2.1.1",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.9.1",
"express": "^4.5.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"handlebars-loader": "^1.7.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"optimize-css-assets-webpack-plugin": "^4.0.1",
"sass-loader": "^7.0.1",
"source-map-loader": "^0.2.4",
"style-loader": "^0.21.0",
"ts-import-plugin": "^1.5.4",
"ts-loader": "^4.5.0",
"typescript": "^3.0.1",
"typescript-eslint-parser": "^18.0.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.17.1",
"webpack-cli": "^2.1.3",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-hot-middleware": "^2.22.2",
"webpack-merge": "^4.1.3",
"xml-loader": "^1.2.1"
},
"engines": {
"node": ">=6.8.0"
}
}