-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "react-starter",
"version": "1.0.0",
"description": "A simple webpack config to get started with React and SCSS",
"main": "app/main.jsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack -p",
"start": "webpack-dev-server --devtool eval --progress --colors --hot --content-base build",
"lint": "eslint --ext .jsx --ext js ./app; exit 0;"
},
"author": "",
"license": "ISC",
"dependencies": {
"classnames": "^2.2.5",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-router": "3.0.5",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0"
},
"devDependencies": {
"babel-core": "^6.3.21",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.23.0",
"eslint": "^2.6.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3",
"node-sass": "^3.4.2",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
}
}