-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "react-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"analyze": "cross-env ANALYZE=1 next build && cat .next/stats.txt",
"generate": "plop --plopfile internals/generators/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"hoist-non-react-statics": "^2.3.1",
"immutable": "^3.8.2",
"invariant": "^2.2.2",
"is-empty": "^1.2.0",
"lodash": "^4.17.4",
"next": "^4.2.1",
"next-redux-wrapper": "^1.3.5",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-loadable": "^5.3.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-immutable": "^4.0.0",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"styled-components": "^2.2.4"
},
"devDependencies": {
"babel-eslint": "^8.0.3",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-styled-components": "^1.3.0",
"babel-plugin-transform-assets": "^0.2.0",
"babel-plugin-transform-assets-import-to-string": "^1.0.1",
"cross-env": "^5.1.1",
"eslint": "^4.13.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-redux-saga": "^0.6.0",
"redux-devtools-extension": "^2.13.2",
"webpack-bundle-size-analyzer": "^2.7.0"
}
}