-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 944 Bytes
/
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
{
"name": "binar-sme-chapter-06-topic-01-design-pattern-service-repository",
"version": "1.0.0",
"main": "app/index.js",
"license": "MIT",
"scripts": {
"start": "nodemon bin/www",
"develop": "nodemon -q bin/www",
"db:create": "./node_modules/.bin/sequelize-cli db:create",
"db:drop": "./node_modules/.bin/sequelize-cli db:drop",
"db:migrate": "./node_modules/.bin/sequelize-cli db:migrate",
"db:rollback": "./node_modules/.bin/sequelize-cli db:migrate:undo",
"db:seed": "./node_modules/.bin/sequelize-cli db:seed:all"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.17.3",
"google-auth-library": "^8.7.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"sequelize": "^6.18.0",
"sequelize-cli": "^6.4.1",
"swagger-ui-express": "^4.5.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}