-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.16 KB
/
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
39
40
41
42
43
44
45
{
"name": "express-template",
"version": "1.0.0",
"description": "A sample template for deploying an Node.js Express API",
"main": "app.js",
"scripts": {
"lint": "eslint '**/*.js'",
"format": "prettier --write '**/*.js'",
"dev": "nodemon src/app.js",
"test": "jest --verbose",
"start": "NODE_ENV=production node src/app.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.12.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"sinon": "^7.4.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"bunyan": "^1.8.12",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"helmet": "^3.20.0",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"sequelize": "^5.16.0",
"sequelize-cli": "^5.5.0",
"validator": "^11.1.0"
}
}