-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 772 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 772 Bytes
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
{
"name": "shield",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"watch": "nodemon src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Sameer Giri",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.5.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.0",
"passport": "^0.4.1",
"passport-auth0": "^1.3.1",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"pug": "^2.0.4",
"sequelize": "^5.21.3",
"sequelize-cli": "^6.2.0"
},
"devDependencies": {
"nodemon": "^2.0.2"
},
"engines": {
"node": "14.x"
}
}