-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.08 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
{
"name": "react-quickstart",
"version": "1.0.0",
"description": "react-quickstart",
"main": "index.js",
"author": "luoxincheng <[email protected]>",
"license": "MIT",
"scripts": {
"lib": "babel src/ -d lib/",
"start": "webpack-dev-server --progress --hot --content-base --config webpack.config.js",
"build": "webpack -p --config webpack.production.config.js --progress",
"page": "sh ./template/newpage.sh",
"test": "mocha --compilers js:babel-core/register ./tests/**/*.test.js"
},
"devDependencies": {
"assets-webpack-plugin": "^3.9.6",
"autodll-webpack-plugin": "^0.4.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-import": "^1.8.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cache-loader": "^1.2.2",
"css-loader": "^0.28.7",
"eslint": "^4.11.0",
"eslint-loader": "2.1.2",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.5.0",
"happypack": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.14.2",
"request-promise": "^4.2.4",
"sass-loader": "^7.0.3",
"style-loader": "^0.19.0",
"stylelint": "^9.4.0",
"stylelint-config-standard": "^18.2.0",
"thread-loader": "^1.2.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"less": "^3.10.3",
"less-loader": "^5.0.0",
"lodash": "^4.17.15",
"path-to-regexp": "^2.1.0",
"react": "16.5.2",
"react-dom": "16.5.2",
"react-redux": "5.0.7",
"react-router": "4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
}
}