-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1011 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1011 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
38
39
40
41
{
"name": "nodejs-api-boilerplate",
"version": "1.0.0",
"description": "Starting project for Secured Node.js APIs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamchathu/nodejs-api-boilerplate.git"
},
"keywords": [
"Node.js",
"REST_API",
"API",
"Security",
"secure",
"boilerplate"
],
"author": "Chathu Vishwajith (https://chathu.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamchathu/nodejs-api-boilerplate/issues"
},
"homepage": "https://github.com/iamchathu/nodejs-api-boilerplate#readme",
"dependencies": {
"content-filter": "^1.1.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"helmet": "^3.12.0",
"mongoose": "^5.0.10",
"mongoose-hidden": "^1.5.3",
"validator": "^9.4.1"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-nodemon": "^2.2.1"
}
}