This repository has been archived by the owner on Jun 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 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
{
"name": "hackillinois-api",
"version": "0.0.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/HackIllinois/api.git"
},
"dependencies": {
"aws-sdk": "^2.5.0",
"bcrypt": "^0.8.7",
"bluebird": "^3.4.1",
"body-parser": "^1.15.1",
"bookshelf": "^0.9.5",
"bytes": "^2.4.0",
"checkit": "^0.6.0",
"cuid": "^1.3.8",
"debug": "^2.2.0",
"express": "^4.13.4",
"express-brute": "^1.0.1",
"express-brute-redis": "0.0.1",
"helmet": "^3.6.1",
"inflection": "^1.10.0",
"jsonwebtoken": "^7.0.1",
"jssha": "^2.1.0",
"knex": "^0.11.5",
"lodash": "^4.13.1",
"mkdirp": "^0.5.1",
"ms": "^0.7.1",
"mysql": "^2.11.1",
"redis": "^2.6.2",
"request-promise": "^4.2.1",
"sparkpost": "^1.3.5",
"uuid": "^3.1.0",
"winston": "^2.2.0",
"ctx": "file:./ctx"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-http": "^3.0.0",
"eslint": "^3.19.0",
"eslint-plugin-node": "^4.2.2",
"fakeredis": "^2.0.0",
"mocha": "^3.2.0",
"mock-knex": "^0.3.7",
"mockery": "^2.0.0",
"sinon": "^1.17.2"
},
"scripts": {
"prod": "./scripts/prod.sh",
"dev": "./scripts/dev.sh",
"test": "./scripts/test.sh",
"bridge": "python ./scripts/bridge.py",
"dev-migrations": "./database/flyway.sh migrate development",
"prod-migrations": "./database/flyway.sh migrate production"
},
"engines": {
"node": ">=6.11.1"
}
}