-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 996 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 996 Bytes
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": "term-project-team-b",
"version": "0.0.0",
"private": true,
"scripts": {
"start:dev": "DEBUG=term-project-team-b:* nodemon ./bin/www",
"start": "node ./bin/www",
"db:create:migration": "sequelize migration:generate --name",
"db:migrate": "sequelize db:migrate",
"db:rollback": "sequelize db:migrate:undo",
"postinstall": "sequelize db:migrate"
},
"dependencies": {
"bcrypt": "^2.0.1",
"body-parser": "^1.18.2",
"connect-pg-simple": "^4.2.1",
"connect-redis": "^3.3.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv": "^5.0.1",
"express": "~4.16.0",
"express-session": "^1.15.6",
"http-errors": "~1.6.2",
"jade": "~1.11.0",
"morgan": "~1.9.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg-promise": "^8.4.1",
"pug": "^2.0.3",
"redis-url": "^1.2.1",
"sequelize": "^4.37.6",
"sequelize-cli": "^4.0.0"
},
"devDependencies": {
"nodemon": "^1.17.4"
}
}