-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.1 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
46
47
48
49
50
{
"name": "restful-starter-project",
"version": "1.0.0",
"description": "Starter package for RESTful Express API app",
"repository": {
"url": "https://github.com/frehman/restful-express-starter.git"
},
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "nyc mocha --exit",
"docs:build": "documentation build src/** -f md -o docs"
},
"keywords": [
"heroku",
"nodemon",
"node",
"express",
"bunyan",
"mocha",
"chai",
"istanbul",
"gulp",
"postgres",
"eslint, eslint-plugin-security"
],
"author": "Feroz Abdul Rehman",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"bunyan": "^1.8.12",
"express": "^4.16.4",
"gulp": "^4.0.0",
"gulp-nodemon": "^2.4.2",
"helmet": "^3.16.0",
"pg": "^7.9.0",
"pg-hstore": "^2.3.2",
"sequelize": ">=5.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"documentation": "^9.3.1",
"dotenv": "^7.0.0",
"eslint": "^5.15.3",
"eslint-plugin-security": "^1.4.0",
"mocha": ">=6.1.3",
"nyc": "^14.0.0"
}
}