-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 KB
/
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
34
35
36
37
38
39
40
41
42
43
{
"name": "express-cop",
"version": "1.0.0",
"description": "Basic Express COP scaffold",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "nodemon App.js",
"undomigrations": "sequelize-cli db:migrate:undo:all",
"migrations": "sequelize-cli db:migrate",
"remigrate": "sequelize-cli db:migrate:undo:all && sequelize-cli db:migrate && sequelize-cli db:seed:all",
"seedAll": "sequelize-cli db:seed:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mpargar/Express-COP.git"
},
"keywords": [
"cop",
"express",
"nodejs",
"node"
],
"author": "Miguel Parra Garcia",
"license": "ISC",
"bugs": {
"url": "https://github.com/mpargar/Express-COP/issues"
},
"homepage": "https://github.com/mpargar/Express-COP#readme",
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"sequelize": "^5.21.11"
},
"devDependencies": {
"mysql2": "^2.1.0",
"sequelize-cli": "^5.5.1"
}
}