-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
74 lines (74 loc) · 2.13 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
66
67
68
69
70
71
72
73
74
{
"name": "next-boilerplate",
"version": "1.1.0",
"license": "MIT",
"scripts": {
"dev": "node server",
"build": "next build",
"start": "NODE_ENV=production node server",
"precommit": "lint-staged",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier-eslint --write",
"git add"
]
},
"dependencies": {
"@zeit/next-bundle-analyzer": "^0.1.1",
"@zeit/next-source-maps": "^0.0.2",
"axios": "^0.18.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-styled-components": "^1.5.1",
"compression": "^1.7.2",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"next": "^6.0.3",
"next-compose-plugins": "^2.1.1",
"next-images": "^0.10.5",
"next-redux-saga": "^2.0.1",
"next-redux-wrapper": "^1.3.5",
"next-routes": "^1.4.2",
"nprogress": "^0.2.0",
"prop-types": "^15.6.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"styled-components": "^3.3.2",
"universal-cookie-express": "^2.1.5",
"webpack": "^3.11.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.7",
"@storybook/addon-links": "^3.4.7",
"@storybook/react": "^3.4.7",
"autoprefixer": "^8.6.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"flow-bin": "^0.74.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"node-sass": "^4.9.0",
"postcss-loader": "^2.1.5",
"prettier": "^1.13.5",
"prettier-eslint-cli": "^4.7.1",
"styled-jsx-css-loader": "^0.3.0",
"webpack-bundle-analyzer": "^2.13.1"
}
}