-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.22 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.22 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "node-web-kit",
"version": "2.2.2",
"description": "Node web starter kit for quick development",
"main": "app.js",
"scripts": {
"start": "node server.js",
"build": "gulp",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JasonBoy/node-web-kit.git"
},
"keywords": [
"node",
"web",
"kit",
"express",
"gulp",
"starter-kit"
],
"author": "Jason Jiang <jasonlikenfs@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasonBoy/node-web-kit/issues"
},
"homepage": "https://github.com/JasonBoy/node-web-kit#readme",
"dependencies": {
"axios": "^0.16.2",
"bluebird": "^3.3.4",
"body-parser": "~1.16.1",
"compression": "^1.5.2",
"consolidate": "^0.14.1",
"cookie-parser": "~1.4.3",
"dateformat": "^2.0.0",
"ejs": "^2.5.6",
"express": "^4.14.0",
"express-session": "^1.11.3",
"express-validator": "^3.1.2",
"express-winston": "^2.0.0",
"lodash": "^4.5.0",
"nunjucks": "^3.0.0",
"request": "^2.67.0",
"sendgrid": "^4.3.1",
"sendgrid-rest": "^2.2.2",
"serve-favicon": "~2.3.0",
"winston": "^2.1.1",
"winston-daily-rotate-file": "^1.1.2"
},
"devDependencies": {
"browserify": "^14.0.0",
"bundle-collapser": "^1.2.1",
"chai": "^3.5.0",
"del": "^2.2.2",
"glob": "^7.1.1",
"gulp": "~3.9.0",
"gulp-clean-css": "^3.0.2",
"gulp-concat": "^2.6.0",
"gulp-ejs": "^3.0.1",
"gulp-fontmin": "^0.7.4",
"gulp-htmlmin": "^3.0.0",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^3.1.1",
"gulp-jsonminify": "^1.0.0",
"gulp-less": "^3.0.3",
"gulp-minify-css": "^1.2.4",
"gulp-notify": "^3.0.0",
"gulp-rev": "^7.1.2",
"gulp-rev-replace": "^0.4.3",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.4.1",
"gulp-uglify": "^2.0.1",
"gulp-util": "^3.0.3",
"jquery": "^3.1.1",
"less": "^2.6.1",
"mocha": "^3.2.0",
"request-debug": "^0.2.0",
"rewire": "^2.5.1",
"style-loader": "^0.13.1",
"supertest": "^3.0.0",
"vinyl-buffer": "^1.0.0",
"vinyl-paths": "^2.1.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.6.0"
},
"engines": {
"node": "6.9.1"
}
}