-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "zinc",
"version": "0.1.0",
"main": "index.js",
"private": false,
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"lint": "eslint ."
},
"dependencies": {
"cookie-parser": "^1.4.4",
"es6-promise": "^4.2.8",
"express": "^4.17.1",
"googleapis": "^42.0.0",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.0",
"next": "9.0.3",
"next-redux-saga": "^4.0.2",
"next-redux-wrapper": "^3.0.0-alpha.3",
"prop-types": "^15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-redux": "^7.1.0",
"react-transition-group": "^4.2.2",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.0.5",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"babel-eslint": "^10.0.2",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-sonarjs": "^0.4.0",
"prettier": "^1.18.2",
"redux-logger": "^3.0.6"
}
}