-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.97 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
{
"name": "react-redux-boilerplate",
"version": "1.0.0",
"main": "index.js",
"repository": {
"url": "[email protected]:johnnyghost/react-redux-boilerplate.git",
"type": "git"
},
"scripts": {
"watch": "./node_modules/.bin/webpack-dev-server --progress --config configs/webpack/webpack.config.babel.js",
"clean": "node_modules/.bin/rimraf dist",
"lint": "./node_modules/.bin/eslint --config .eslintrc src",
"pre-build": "npm run clean && npm run lint",
"build:production": "npm run pre-build && NODE_ENV=prod webpack --progress --colors --config configs/webpack/webpack.config.babel.js",
"build:staging": "npm run pre-build && NODE_ENV=staging webpack --progress --colors --config configs/webpack/webpack.config.babel.js",
"build:development": "npm run pre-build && NODE_ENV=dev webpack --progress --colors --config configs/webpack/webpack.config.babel.js"
},
"author": "johnnyghost <[email protected]>",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.5",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"redux": "^3.6.0",
"redux-saga": "^0.14.3"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-typecheck": "^3.9.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.27.3",
"eslint": "^3.16.1",
"eslint-loader": "^1.6.3",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "^2.0.0",
"html-webpack-plugin": "^2.28.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"precss": "^1.4.0",
"progress-bar-webpack-plugin": "^1.9.3",
"rimraf": "^2.6.1",
"sanitize.css": "^5.0.0",
"style-loader": "^0.13.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}