-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 953 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
34
35
36
37
38
{
"name": "expressjs-bolierplate",
"version": "1.0.0",
"description": "A expressjs API boilerplate.",
"repository": {
"type": "git",
"url": "https://github.com/tmackness/ExpressJS-API-Boilerplate.git"
},
"main": "app.js",
"scripts": {
"dev": "NODE_ENV=development nodemon -w ."
},
"author": "Trent Mackness",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"consul": "^0.34.1",
"cors": "^2.8.4",
"elastic-apm-node": "^2.5.1",
"express": "^4.16.4",
"ioredis": "^4.5.1",
"morgan": "^1.9.1"
},
"devDependencies": {
"dotenv": "^6.1.0",
"errorhandler": "^1.5.0",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-prettier": "^3.0.1",
"i": "^0.3.6",
"npm": "^6.7.0",
"prettier": "^1.16.1"
}
}