-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
55 lines (55 loc) · 1.52 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
{
"name": "next-postgres",
"version": "1.0.2",
"main": "index.js",
"license": "MIT",
"engines": {
"node": "10.X.X"
},
"scripts": {
"dev": "node index.js",
"build": "NODE_ENV=production next build",
"migrate": "NODE_ENV=production node_modules/.bin/sequelize db:migrate",
"start": "NODE_ENV=production npm run migrate && node index.js",
"deploy": "gcloud app deploy --version 1-0-2",
"gcp-build": "NODE_ENV=production npm run build",
"heroku-postbuild": "NODE_ENV=production npm run build"
},
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/register": "^7.4.0",
"@babel/core": "7.4.0",
"@babel/node": "7.2.2",
"@babel/preset-env": "7.4.2",
"@emotion/core": "^10.0.9",
"@emotion/styled": "^10.0.9",
"amdefine": "^1.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"bcrypt": "^3.0.4",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cookie-parser": "^1.4.4",
"cookie-session": "^1.3.3",
"cors": "^2.8.5",
"emotion": "^10.0.9",
"emotion-server": "^10.0.9",
"express": "^4.16.4",
"has-flag": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"morgan": "^1.9.1",
"next": "^8.0.3",
"now-env": "^3.1.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.9.0",
"pg-hstore": "^2.3.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"sequelize": "^5.1.0",
"sequelize-cli": "^5.4.0",
"webpack": "^4.29.6"
}
}