-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
{
"name": "react-seed",
"version": "1.0.0",
"description": "",
"main": "index.jsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:dev": "webpack --config webpack.dev.config.js --colors --display-error-details",
"build:prod": "webpack --config webpack.prod.config.js --colors --display-error-details",
"start": "webpack-dev-server --config webpack.dev.config.js --colors --progress"
},
"keywords": [],
"author": "jiangJade",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^9.1.5",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bundle-loader": "^0.5.6",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.3",
"postcss": "^7.0.2",
"postcss-filter-plugins": "^3.0.1",
"postcss-loader": "^3.0.0",
"precss": "^3.1.2",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-hot-loader": "^4.1.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.1.1",
"webpack": "^4.6.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"axios": "^0.19.0",
"caniuse-db": "^1.0.30001008",
"mockjs": "^1.0.1-beta3",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-router-dom": "^4.2.2",
"vendors": "^1.0.2"
},
"server": {
"local": {
"host": "0.0.0.0",
"port": 8089
},
"mock": {
"host": "localhost",
"port": 8081
}
},
"packageName": "react-seed"
}