-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (32 loc) · 720 Bytes
/
package.json
File metadata and controls
33 lines (32 loc) · 720 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
{
"name": "node-sql-starter",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"migration": "sequelize db:migrate",
"sequelize": "sequelize"
},
"dependencies": {
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "~4.3.4",
"dotenv": "^16.0.1",
"ejs": "~3.1.8",
"express": "~4.18.1",
"helmet": "^5.1.1",
"http-errors": "~2.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.10.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.21.3"
},
"devDependencies": {
"nodemon": "^2.0.19",
"sequelize-cli": "^6.4.1"
}
}