generated from root-kings/template-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 954 Bytes
/
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
{
"name": "root-template-express",
"version": "1.0.0",
"description": "Backend template for Root Kings Express Applications",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"lint": "eslint . ; exit 0"
},
"author": "Krushn Dayshmookh <[email protected]>",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^7.2.3",
"aws-sdk": "^2.853.0",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"formidable": "^1.2.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.26.0",
"moment-timezone": "^0.5.31",
"mongoose": "^5.9.16",
"mongoose-lean-virtuals": "^0.6.8",
"mongoose-paginate": "^5.0.3",
"multer": "^1.4.2",
"pug": "^3.0.0",
"socket.io": "^2.3.0",
"unique-string": "^2.0.0"
},
"devDependencies": {
"eslint": "^7.6.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.4"
}
}