forked from chesterhow/js-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.88 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
{
"name": "js-stack",
"version": "1.0.0",
"description": "A site listing the tools which will be used for the new React stack",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack.dev.config.js",
"build:dev": "webpack --config ./webpack.dev.config.js --progress --profile --colors",
"build:prod": "webpack -p --config ./webpack.prod.config.js --progress --profile --colors",
"lint": "eslint src && flow"
},
"repository": "[email protected]:chesterhow/js-stack.git",
"author": "Chester How <[email protected]>",
"license": "MIT",
"browserlist": [
"> 1%"
],
"dependencies": {
"autoprefixer": "^7.1.1",
"clean-webpack-plugin": "^0.1.16",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "next",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"webpack": "^2.6.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.4",
"empty": "^0.10.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-compat": "^1.0.3",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"file-loader": "^0.11.1",
"flow-bin": "^0.47.0",
"node-sass": "^4.5.3",
"path": "^0.12.7",
"postcss-loader": "^2.0.5",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.1",
"url-loader": "^0.5.8",
"webpack-dev-server": "^2.4.5"
}
}