-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.94 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
64
65
{
"name": "react_redux_11302016",
"version": "1.0.0",
"description": "React and Redux class files",
"scripts": {
"start": "npm run clean && npm run webpack && concurrently \"npm run webpack:w\" \"npm run web\" \"npm run rest\"",
"clean": "rimraf dist",
"web": "browser-sync start -c ./config.browsersync.js",
"rest": "json-server --watch --port 3010 db.json",
"webpack:w": "webpack --config ./config.webpack.js --watch",
"webpack": "webpack --config ./config.webpack.js"
},
"keywords": [
"react",
"redux"
],
"author": "Eric W. Greene",
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.17.0",
"concurrently": "^3.0.0",
"connect-history-api-fallback": "^1.3.0",
"json-server": "^0.9.2"
},
"dependencies": {
"autoprefixer": "^6.3.7",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"bootstrap": "4.0.0-alpha.5",
"bootstrap-loader": "^1.0.10",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"eslint": "^3.11.1",
"eslint-plugin-react": "^6.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.22.0",
"key-mirror": "^1.0.1",
"lodash": "^4.16.2",
"node-sass": "^3.8.0",
"null-loader": "^0.1.1",
"postcss": "^5.0.21",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.13.0",
"raw-loader": "^0.5.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"resolve-url-loader": "^1.4.4",
"rimraf": "^2.5.2",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1"
}
}