generated from Golden-Flash/express-sequelize-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 956 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
32
33
{
"name": "express-sequelize-boilerplate",
"version": "1.0.0",
"description": "Express, MVC, Sequalize, Mysql boilerplate",
"main": "app.js",
"scripts": {
"seed:up": "sequelize-cli db:seed:all",
"seed:down": "sequelize-cli db:seed:undo",
"migrate:up": "sequelize-cli db:migrate",
"migrate:down": "sequelize-cli db:migrate:undo:all",
"make:seed": "sequelize-cli seed:generate --name",
"make:migrate": "sequelize-cli migration:generate --name",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js"
},
"author": "goldenfinix68",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"http-status": "^1.7.4",
"joi": "^17.13.3",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.2.5",
"sequelize": "^6.6.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"nodemon": "^2.0.7",
"sequelize-cli": "^6.2.0"
}
}