-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.64 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
{
"name": "react-redux-starter",
"version": "0.1.0",
"description": "Boilerplate react and redux app for setting up new projects.",
"main": "index.js",
"author": "Mike Merritt <emmjemm@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"snapshot": "jest --updateSnapshot",
"start": "webpack-dev-server --progress --colors --inline --hot --port 3500",
"build": "webpack --progress --colors"
},
"dependencies": {
"axios": "^0.15.3",
"babel-runtime": "^6.23.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^4.0.0",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-form": "^6.6.0",
"redux-react-router": "^1.0.0-beta3",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.3.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.2.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"jest": "^19.0.2",
"react-test-renderer": "^15.4.2",
"redux-devtools": "^3.3.2",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.2.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}