-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 791 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 791 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
{
"name": "bcr_car-management-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node bin/www",
"develop": "nodemon -q bin/www",
"setup": "sequelize db:drop && sequelize db:create && sequelize db:migrate && sequelize db:seed:all",
"superadmin": "sequelize db:seed:undo && sequelize db:seed:all"
},
"author": "Erick Yudha",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.32.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"pg": "^8.8.0",
"sequelize": "^6.25.0",
"sequelize-cli": "^6.5.1",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}