-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1013 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1013 Bytes
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": "node-express-api",
"version": "1.0.0",
"description": "Api server",
"repository": "https://github.com/jbheber/node-express-api.git",
"license": "MIT",
"scripts": {
"dev": "node_modules/.bin/nodemon --watch server index.js",
"start:live": "pm2-docker start process.json --env production",
"test": "NODE_ENV=test node_modules/.bin/jest",
"coverage": "NODE_ENV=test node_modules/.bin/jest --coverage",
"start": "npm run dev"
},
"keywords": [
"express-api, docker, docker-compose",
"pm2"
],
"author": "Juan Heber",
"dependencies": {
"axios": "^0.21.1",
"bluebird": "^3.7.1",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"config": "^3.2.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"nodemon": "^1.19.4",
"prettier": "^1.18.2"
}
}