-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
33 lines (33 loc) · 977 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
{
"name": "NodeJS-A-Clean-Archticture-NJCA",
"version": "1.0.0",
"description": "This is a simple NodeJS Architecture can be used in an enterprise applications. 🎉🤔",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "nodemon --exec babel-node src/server.js --inspect",
"start": "nodemon --exec babel-node src/server.js"
},
"author": "Alameer Ashraf",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"nodemon": "^2.0.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"global-tunnel-ng": "^2.7.1",
"method-override": "^3.0.0",
"mongodb": "^3.3.4",
"mongoose": "^5.13.15",
"mongoose-autopopulate": "^0.10.0",
"mongoose-unique-validator": "^2.0.3",
"request": "^2.88.0",
"winston": "^3.2.1"
}
}