forked from codeforanchorage/courtbot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "courtbot",
"version": "0.0.1",
"description": "Deliver simple court data via JSON or SMS.",
"repository": {
"type": "git",
"url": "git://github.com/codeforanchorage/courtbot.git"
},
"main": "web.js",
"scripts": {
"test": "NODE_ENV=test mocha --exit test",
"start": "node web.js",
"dbsetup": "node utils/createTables.js",
"loaddata": "node runners/load.js"
},
"author": "Sam Hashemi",
"license": "MIT",
"engines": {
"node": "8.9.1"
},
"dependencies": {
"body-parser": "^1.18.3",
"cookie-session": "^2.0.0-beta.3",
"csv": "^1.2.1",
"dotenv": "~4.0.0",
"emoji-strip": "^1.0.1",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"knex": "^0.15.2",
"logfmt": "^1.2.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.21",
"on-headers": "^1.0.1",
"pg": "^7.8.0",
"pg-copy-streams": "^1.2.0",
"request": "^2.88.0",
"rollbar": "^2.5.2",
"sha1": "~1.1.0",
"twilio": "^3.19.1",
"winston": "^3.0.0"
},
"devDependencies": {
"chai": "~4.1.2",
"cookie-parser": "^1.3.5",
"keygrip": "^1.0.2",
"mocha": "^5.2.0",
"nock": "^9.6.1",
"sinon": "^4.5.0",
"supertest": "~3.0.0",
"supertest-session": "^3.3.0"
}
}