-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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": "react-boilerplate",
"version": "1.0.0",
"description": "react boilerplate",
"main": "index.js",
"scripts": {
"local.dev": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.dev.js --progress",
"local.dll": "webpack --config webpack.dll.config.js --progress --display-modules --profile",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"test": "test",
"formatAll": "prettier --write 'src/**/*.js' ",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.js": [
"eslint $@",
"prettier --write",
"git add"
]
},
"keywords": [
"react",
"react-boilerplate"
],
"author": "zack",
"license": "ISC",
"dependencies": {
"antd": "^2.12.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-import": "^1.2.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"eslint": "^4.2.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.29.0",
"husky": "^0.14.3",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"lint-staged": "^4.0.2",
"path": "^0.12.7",
"prettier": "^1.5.3",
"prop-types": "^15.5.10",
"react-hot-loader": "^3.0.0-beta.7",
"style-loader": "^0.18.2",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
}
}