forked from CivicTechAtlanta/courtbot
-
Notifications
You must be signed in to change notification settings - Fork 10
/
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": "16.17.0"
},
"dependencies": {
"body-parser": "^1.20.1",
"cookie-session": "^2.0.0-beta.3",
"csv": "^5.3.2",
"dotenv": "~4.0.0",
"emoji-strip": "^1.0.1",
"express": "^4.18.2",
"jsonwebtoken": "^8.3.0",
"knex": "^2.3.0",
"logfmt": "^1.2.1",
"moment": "^2.29.4",
"moment-timezone": "^0.5.37",
"on-headers": "^1.0.1",
"pg": "^8.8.0",
"pg-copy-streams": "^1.2.0",
"request": "^2.88.0",
"rollbar": "^2.4.4",
"sha1": "~1.1.0",
"twilio": "^3.82.0",
"winston": "^3.0.0"
},
"devDependencies": {
"chai": "~4.1.2",
"cookie-parser": "^1.3.5",
"keygrip": "^1.0.2",
"mocha": "^10.0.0",
"nock": "^9.6.1",
"sinon": "^4.5.0",
"supertest": "~3.0.0",
"supertest-session": "^3.3.0"
}
}