forked from codefortulsa/courtbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.99 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
{
"name": "courtbot",
"version": "0.1.0",
"description": "Deliver simple court data via JSON or SMS.",
"main": "web.js",
"scripts": {
"acceptance": "./run-cucumber && node cucumber-report.js",
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"start": "node web.js",
"loaddata": "node runners/load.js"
},
"author": "Philip Kin",
"license": "MIT",
"engines": {
"node": "6.9.1"
},
"dependencies": {
"async": "~0.2.10",
"bluebird": "3.4.6",
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-alpha.2",
"courtbot-engine": "^1.6.13",
"courtbot-engine-data-courtbook": "^1.1.4",
"courtbot-engine-data-oscn": "^1.2.4",
"courtbot-engine-pg": "^1.3.9",
"courtbot-engine-twilio": "^1.0.8",
"csv-parse": "0.0.1",
"db-migrate": "^0.10.0-beta.20",
"db-migrate-pg": "^0.1.11",
"dotenv": "^1.1.0",
"express": "~4.14.0",
"knex": "^0.12.2",
"le_node": "^1.7.0",
"log4js": "^1.1.0",
"logentries-log4js-appender": "0.0.3",
"logfmt": "~0.23.0",
"nock": "^1.2.1",
"node-rest-client": "^2.0.1",
"pg": "^6.1.0",
"request": "~2.34.0",
"sha1": "~1.1.0",
"timekeeper": "0.0.5",
"twilio": "~2.11.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^2.1.2",
"chai-as-promised": "^6.0.0",
"chance": "^1.0.4",
"chart.js": "^2.5.0",
"cookie-parser": "^1.3.5",
"coveralls": "^2.11.16",
"cucumber": "^2.0.0-rc.7",
"cucumber-html-reporter": "^0.3.7",
"dirty-chai": "^1.2.2",
"istanbul": "^0.4.5",
"mocha": "^2.2.4",
"nyc": "^10.1.2",
"proxyquire": "^1.7.10",
"request": "^2.34.0",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"supertest": "^0.15.0",
"supertest-session": "^0.0.7",
"webpack": "^1.14.0",
"xml2js": "^0.4.17"
}
}