-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 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
{
"name": "nodejs-starter-kit",
"version": "1.0.0",
"description": "Setup Nodejs application with express, mongodb and socket io",
"main": "./src/index.js",
"scripts": {
"start": "./node_modules/.bin/gulp",
"dev": "./node_modules/.bin/gulp dev",
"test": "./node_modules/.bin/gulp test",
"coverage": "./node_modules/.bin/gulp coverage",
"ci": "./node_modules/.bin/gulp ci"
},
"engines": {
"node": "4.x",
"npm": "2.x"
},
"author": "Pierre-Alexandre Dupuy",
"license": "ISC",
"dependencies": {
"body-parser": "^1.12.4",
"compression": "^1.4.4",
"cookie-parser": "^1.3.5",
"errorhandler": "^1.3.6",
"express": "^4.12.4",
"gulp": "^3.9.0",
"gulp-nodemon": "^2.0.3",
"helmet": "^0.9.1",
"lodash": "^3.9.3",
"method-override": "^2.3.3",
"morgan": "^1.5.3",
"mysql": "^2.7.0",
"nodemon": "^1.3.7",
"q": "^1.4.1",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"chai": "^2.3.0",
"gulp-eslint": "^1.1.0",
"gulp-istanbul": "^0.10.0",
"gulp-jscs": "^1.6.0",
"gulp-mocha": "^2.1.1",
"mocha": "^2.2.5",
"nock": "^2.4.0",
"sinon": "^1.14.1",
"supertest": "^1.0.1"
},
"optionalDependencies": {
"mongoose": "^4.2.5",
"socket.io": "^1.3.7"
}
}