-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.49 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "node-backend",
"version": "1.0.0",
"description": "A Boilerplate application for building REST APIs using express",
"author": "Naresh Tank <[email protected]>",
"main": "index.js",
"private": false,
"engines": {
"node": "7.10.x",
"npm": "4.2.x"
},
"scripts": {
"start": "gulp serve",
"test": "mocha server/**/*.test.js ",
"precommit": "eslint server/**"
},
"repository": {
"type": "git",
"url": "https://github.com/team-avesta/node-backend-boilerplate.git"
},
"keywords": [
"express",
"node",
"node.js",
"es6",
"REST",
"API",
"boilerplate"
],
"dependencies": {
"bcrypt": "^1.0.2",
"bluebird": "^3.1.4",
"body-parser": "^1.14.2",
"config": "^1.21.0",
"cookie-parser": "^1.4.1",
"cors": "^2.7.1",
"debug": "^2.2.0",
"express": "4.14.0",
"express-session": "^1.0.4",
"express-validation": "1.0.0",
"express-winston": "^1.2.0",
"helmet": "2.1.1",
"http-status": "^0.2.0",
"joi": "8.4.2",
"method-override": "^2.3.9",
"morgan": "1.7.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg": "^6.0.3",
"winston": "^2.1.1"
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "3.16.1",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.2.1",
"husky": "^0.13.4",
"istanbul": "1.1.0-alpha.1",
"mocha": "3.2.0",
"run-sequence": "^1.1.5",
"supertest": "2.0.1",
"supertest-as-promised": "4.0.2"
},
"license": "MIT"
}