- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
20 lines (20 loc) · 446 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 446 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "node-api-docker",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon -- -r esm -r dotenv/config index.js",
"start": "pm2 start index.js --watch --no-daemon --node-args=\"-r esm\""
},
"dependencies": {
"esm": "^3.2.25",
"mongoose": "^5.8.7",
"pm2": "^4.2.1",
"restify": "^8.5.1"
},
"devDependencies": {
"dotenv": "^8.2.0",
"nodemon": "^2.0.2"
}
}