-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.06 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
{
"name": "lokely-react-boilerplate",
"licence": {
"type": "MIT",
"url": "https://github.com/lokely/react-boilerplate/blob/master/LICENCE"
},
"scripts": {
"distribute": "./node_modules/webpack/bin/webpack.js --config ./webpack.config.prod.js",
"dist": "yarn run distribute",
"start": "webpack-dev-server",
"lint": "./node_modules/eslint/bin/eslint.js src",
"build": "babel src -d build",
"build-watch": "babel src --watch -d build",
"gzip": "gzip -9rk ./static"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.5.2",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^6.8.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-boilerplate": "^1.1.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"compression-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.2.0",
"css-loader": "^0.28.7",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-config-remitbri": "^5.3.0",
"eslint-config-youngapp": "^1.1.1",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-redux": "^0.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"node-sass": "^4.5.3",
"open-browser-webpack-plugin": "^0.0.5",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"path": "^0.12.7",
"react-hot-loader": "^3.1.1",
"react-router-dom": "^4.2.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.0-rc.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^2.9.3",
"webpack-hot-middleware": "^2.20.0"
},
"dependencies": {
"axios": "^0.17.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}