-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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": "app",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "gulp scripts && node ./app",
"test": "mocha test.js",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha test.js",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"docs": "rm -rf documentation/jsdoc && jsdoc -c jsdoc.json -r && node ./documentation/apidoc-server.js"
},
"dependencies": {
"async": "^2.0.0-rc.2",
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"css-element-queries": "^0.3.2",
"debug": "~2.2.0",
"del": "^2.2.0",
"ejs": "~2.3.3",
"express": "~4.13.1",
"gm": "^1.21.1",
"gulp-exec": "^2.1.2",
"jsonwebtoken": "^5.4.1",
"mkdirp": "^0.5.1",
"moment": "^2.12.0",
"morgan": "~1.6.1",
"multer": "^1.1.0",
"mysql": "^2.10.0",
"pdfinfo": "0.0.3",
"redis": "^2.3.0",
"request": "^2.69.0",
"rest": "^1.3.1",
"sequelize": "^3.15.1",
"serve-favicon": "~2.3.0",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5"
},
"devDependencies": {
"browser-sync": "^2.11.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"coveralls": "^2.11.6",
"finalhandler": "^0.4.1",
"gulp": "^3.9.1",
"gulp-browserify": "^0.5.1",
"gulp-change": "^1.0.0",
"gulp-mocha-phantomjs": "^0.11.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.2.0",
"gulp-uglify": "^1.5.3",
"istanbul": "^0.4.2",
"jquery": "^2.2.1",
"js-cookie": "^2.1.0",
"log4js": "^0.6.35",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.1.0",
"mocha-phantomjs": "^4.0.2",
"node-sass": "^3.7.0",
"request": "^2.69.0",
"request-mocha": "^0.2.0",
"serve-static": "^1.10.2",
"supertest": "^1.2.0",
"vue": "^1.0.17"
}
}