-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 967 Bytes
/
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
{
"name": "next-redux-starter",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"init": "node scripts/initDB.js",
"dev": "cross-env NODE_ENV=development node server/index.js",
"build": "next build",
"export": "next export",
"start": "cross-env NODE_ENV=production node server/index.js"
},
"dependencies": {
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"es6-promise": "4.1.1",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.0",
"next": "latest",
"next-redux-saga": "1.0.1",
"next-redux-wrapper": "1.2.0",
"pg": "^6.4.2",
"pg-hstore": "^2.3.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "5.0.5",
"redux": "3.7.2",
"redux-logger": "^3.0.6",
"redux-saga": "0.15.4",
"sequelize": "^4.22.8",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-runtime": "^6.26.0",
"cross-env": "^5.1.1",
"redux-devtools-extension": "2.13.2"
}
}