-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 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": "runiv-api",
"version": "1.0.0",
"description": "REST API for Runiv",
"main": "server.js",
"scripts": {
"test": "NODE_ENV=test mocha --recursive --exit",
"start": "npm run migrate:all; node server.js",
"dev": "npm run migrate:all; npm run seed:all; npx nodemon server.js",
"initdb": "npx sequelize-cli db:create",
"migrate:all": "npx sequelize-cli db:migrate",
"seed:all": "npx sequelize-cli db:seed:all",
"undo:seed": "npx sequelize-cli db:seed:undo:all"
},
"keywords": [
"rest",
"express"
],
"author": "Harshit Vishwakarma",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.4.5",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.6.0",
"redis": "^3.1.2",
"sequelize": "^6.6.5",
"validator": "^13.6.0"
},
"devDependencies": {
"chai": "^4.3.4",
"faker": "^5.5.3",
"mocha": "^9.0.2",
"nodemon": "^2.0.9",
"sequelize-cli": "^6.2.0"
}
}