-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.21 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
{
"name": "nodejs_template",
"version": "1.0.0",
"description": "nodejs template using express ",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "mocha ./tests/*.js",
"test:watch": "mocha --watch ./tests/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ronmantech/Nodejs_Template.git"
},
"keywords": [
"nodejs",
"template",
"express",
"mocha"
],
"author": "Ronan Manoj",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Ronmantech/Nodejs_Template/issues"
},
"homepage": "https://github.com/Ronmantech/Nodejs_Template#readme",
"dependencies": {
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"express": "^4.16.3",
"helmet": "^3.12.0",
"pug": "^2.0.3"
},
"engines": {
"node": "*"
},
"devDependencies": {
"chai": "*",
"gulp": "*",
"gulp-concat": "^2.6.1",
"gulp-htmlmin": "^3.0.0",
"gulp-imagemin": "^4.0.0",
"gulp-inject-string": "^1.1.1",
"gulp-newer": "^1.3.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sequence": "^0.4.6",
"gulp-uglify": "^3.0.0",
"gulp-uglifyes": "^0.1.2",
"gulp-util": "^3.0.8",
"mocha": "*"
}
}