-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 KB
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
{
"name": "example-relational-database",
"version": "1.0.0",
"description": "Testing Relational Database, REST API and Docker",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js",
"db:create": "sequelize-cli db:create",
"db:migrate": "sequelize-cli db:migrate",
"db:g:migration": "sequelize-cli migration:generate --name",
"db:g:seed": "sequelize-cli seed:generate --name",
"db:seeds": "sequelize-cli db:seed:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cappuccino-code/example-relational-database.git"
},
"keywords": [],
"author": "Ravi Chandra Rachamalla <rach0022@algonquinlive.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/cappuccino-code/example-relational-database/issues"
},
"homepage": "https://github.com/cappuccino-code/example-relational-database#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase-admin": "^9.5.0",
"helmet": "^4.4.1",
"pg": "^8.5.1",
"sequelize": "^6.5.0",
"winston": "^3.3.3"
},
"devDependencies": {
"nodemon": "^2.0.7",
"sequelize-cli": "^6.2.0"
}
}