-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 880 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 880 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
36
37
38
{
"name": "oauthkeeper",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server",
"dev": "cross-env NODE_ENV=development nodemon server"
},
"keywords": [],
"author": "Nilesh D",
"license": "MIT",
"engines": {
"node": "10.x"
},
"dependencies": {
"@sendgrid/mail": "^7.4.0",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"ejs-mate": "^3.0.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongoose": "^5.11.3",
"morgan": "^1.10.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^2.0.6"
}
}