-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
95 lines (95 loc) · 2.42 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
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
91
92
93
94
95
{
"name": "api-template",
"version": "0.7.0",
"description": "A template for creating APIs Fast",
"main": "app.js",
"scripts": {
"test": "gulp sanity",
"start": "node app",
"clock": "node ./services/queue/clock",
"workers": "node ./services/queue/workers"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EnsembleLab/api-template.git"
},
"keywords": [
"REST",
"API"
],
"author": "Olufemi Olanipekun <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/EnsembleLab/api-template/issues"
},
"homepage": "https://github.com/EnsembleLab/api-template#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"conventional-github-releaser": "^1.1.12",
"fs": "0.0.1-security",
"gulp": "^4.0.2",
"gulp-bump": "^2.7.0",
"gulp-conventional-changelog": "^1.1.3",
"gulp-eslint": "^6.0.0",
"gulp-git": "^2.10.1",
"gulp-mocha": "^7.0.2",
"gulp-nodemon": "^2.5.0",
"gulp-todo": "^5.4.0",
"gulp-util": "^3.0.8",
"jshint": "^2.11.0",
"jshint-stylish": "^2.2.1",
"minimist": "^1.2.6",
"mocha": "^7.1.2",
"mongoose-mock": "^0.4.0",
"run-sequence": "^2.2.1",
"sinon": "^2.3.4",
"sinon-chai": "^2.11.0",
"supertest": "^3.0.0"
},
"dependencies": {
"aes-js": "^3.0.0",
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.17.1",
"bugsnag": "^1.9.1",
"cacheman": "^2.2.1",
"cacheman-redis": "^1.1.2",
"cluster": "^0.7.7",
"cors": "^2.8.3",
"cron": "^1.3.0",
"crypto": "0.0.3",
"debug": "^2.6.3",
"express": "^4.15.2",
"express-content-length-validator": "^1.0.0",
"express-enforces-ssl": "^1.1.0",
"express-limiter": "^1.6.0",
"express-validator": "^6.4.0",
"fnv-plus": "^1.2.12",
"helmet": "^3.22.0",
"hpp": "^0.2.2",
"kue": "^0.11.6",
"lodash": "^4.17.21",
"mongoose": "^6.5.0",
"mysql2": "^2.3.3",
"nocache": "^2.1.0",
"pg": "^6.4.2",
"pg-hstore": "^2.3.2",
"q": "^1.4.1",
"randomstring": "^1.1.5",
"redis": "^3.1.1",
"request": "^2.83.0",
"request-promise": "^4.2.1",
"sequelize": "^6.0.0",
"shortid": "^2.2.8",
"sqlite3": "^4.0.1",
"tedious": "^2.1.5",
"util": "^0.10.3",
"winston": "^2.3.1",
"winston-bugsnag": "^2.1.0",
"winston-loggly-bulk": "^2.0.2"
},
"mocha": {
"recursive": true,
"timeout": 20000
}
}