-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"name": "quiz-2018",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "heroku local:start",
"super": "supervisor ./bin/www",
"start_old": "node ./bin/www",
"migrate_local": "sequelize db:migrate --url sqlite://$(pwd)/quiz.sqlite",
"seed_local": "sequelize db:seed:all --url sqlite://$(pwd)/quiz.sqlite",
"open_heroku": "heroku open",
"migrate_heroku": "heroku run ./node_modules/.bin/sequelize db:migrate --url \\$DATABASE_URL",
"seed_heroku": "heroku run ./node_modules/.bin/sequelize db:seed:all --url \\$DATABASE_URL",
"reset_heroku": "heroku pg:reset DATABASE",
"mon_heroku": "heroku maintenance:on",
"moff_heroku": "heroku maintenance:off"
},
"engines": {
"node": "8.9.1",
"npm": "5.6.0"
},
"dependencies": {
"body-parser": "~1.18.2",
"cloudinary": "^1.9.1",
"connect-session-sequelize": "^5.0.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"ejs": "~2.5.7",
"express": "~4.15.5",
"express-flash": "0.0.2",
"express-partials": "^0.3.0",
"express-session": "^1.15.6",
"method-override": "^2.3.10",
"morgan": "~1.9.0",
"multer": "^1.3.0",
"pg": "7.4.0",
"sequelize": "^4.37.5",
"sequelize-cli": "^4.0.0",
"serve-favicon": "~2.4.5",
"supervisor": "^0.12.0"
},
"devDependencies": {
"sqlite3": "^3.1.13"
}
}