-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.19 KB
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
{
"name": "restful-api",
"version": "1.0.0",
"description": "Restful web Api Design with Node.js 12",
"main": "server.js",
"scripts": {
"start8": "node -r esm .",
"start": "pm2-runtime start ecosystem.config.js --env production",
"debug": "DEBUG=* node -r esm .",
"dev": "node -r esm ./node_modules/nodemon/bin/nodemon.js .",
"test": "mocha ./test/*",
"docker:build": "sudo docker build . -t",
"heroku:push": "sudo heroku container:push",
"heroku:release": "sudo heroku container:release"
},
"mocha": {
"require": [
"esm"
]
},
"repository": {
"type": "git",
"url": "https://github.com/natheboy/restful-api-nodejs-12.git"
},
"keywords": [
"Nodejs",
"Express",
"PM2",
"Supertest",
"mongodb",
"mocha",
"esm"
],
"author": "Adonai Nangui <adonainangui03@gmail.com>",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"eslint": "^6.8.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"helmet": "^3.21.3",
"pm2": "^4.2.3"
},
"devDependencies": {
"jest": "^25.1.0",
"mocha": "^7.1.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}