-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.39 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "backend-api",
"version": "0.0.0",
"private": true,
"author": "Muhammad Asif Javed <me@maxifjaved.com>",
"main": "src/index.js",
"scripts": {
"start": "nodemon --watch .env --watch . --exec babel-node src --source-maps",
"build": "rimraf dist && babel src -D --out-dir dist",
"prod": "node dist"
},
"keywords": [
"node",
"express",
"mongo",
"yarn",
"js"
],
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"handlebars": "^4.7.3",
"helmet": "^3.21.3",
"http-status-codes": "^1.4.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"moment": "2.24.0",
"mongoose": "^5.9.4",
"mongoose-autopopulate": "^0.12.0",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"nodemailer": "^6.4.5",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pug": "^2.0.4",
"serve-favicon": "^2.5.0",
"validator": "^12.2.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"babel-loader": "^8.0.6",
"nodemon": "^2.0.2",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
}
}