forked from georgebonnr/opinionated-redux-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (48 loc) · 1.35 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
{
"name": "opinionated-redux",
"version": "0.2.0",
"description": "Opinionated Redux Workshop @ Forward JS 2016",
"main": "index.js",
"license": "MIT",
"eslintConfig": {
"globals": {
"window": true,
"document": true
}
},
"scripts": {
"start": "npm-run-all --parallel dev proxy",
"dev": "webpack-dev-server --config webpack.config.js --hot --progress --d",
"proxy": "node ./dev-server/proxy.js"
},
"dependencies": {
"babel": "6.5.2",
"babel-cli": "6.6.5",
"babel-eslint": "6.0.0",
"babel-loader": "6.2.4",
"babel-polyfill": "6.7.2",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-2": "6.5.0",
"babel-runtime": "6.6.1",
"cors-anywhere": "^0.4.0",
"eslint": "1.6.0",
"eslint-config-patreon": "Patreon/eslint-config-patreon#6327c6f98fdce522800e5fcdf3b3de6cf9e1224f",
"eslint-friendly-formatter": "1.2.2",
"eslint-loader": "1.1.0",
"eslint-plugin-react": "3.5.1",
"humps": "^0.7.0",
"is-plain-object": "^2.0.1",
"isomorphic-fetch": "^2.2.1",
"npm-run-all": "^1.2.11",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"redux-thunk": "1.0.0",
"react-hot-loader": "^1.2.8",
"react-redux": "4.0.0",
"redux": "3.0.4",
"redux-logger": "2.0.4",
"webpack": "1.13.1",
"webpack-dev-server": "1.10.1"
}
}