-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.03 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
{
"name": "bnc-api",
"version": "1.0.0",
"description": "Brand New Congress API",
"main": "src",
"engines": {
"node": "7.7.2",
"npm": "4.1.2"
},
"scripts": {
"test": "test",
"lint": "eslint --fix --ext js --ext jsx src",
"start": "node ./src",
"worker": "node ./src/worker.js",
"nation-sync": "node ./src/nation-sync/index.js",
"dev-start": "nodemon ./src",
"dev-worker": "nodemon ./src/worker.js",
"kue-dashboard": "kue-dashboard -p 3050 -r $REDIS_URL",
"dev": "nf start -w --procfile ./dev-tools/Procfile.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brandnewcongress/api.git"
},
"keywords": [
"api",
"brand",
"new",
"congress"
],
"author": "Saikat Chakrabarti",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/brandnewcongress/api/issues"
},
"homepage": "https://github.com/brandnewcongress/api/#readme",
"dependencies": {
"airtable": "^0.4.3",
"axios": "^0.15.3",
"babyparse": "^0.4.6",
"basic-auth": "^1.1.0",
"bluebird": "^3.5.0",
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"dotenv": "^2.0.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"express": "^4.14.0",
"foreman": "^1.4.1",
"geckoboard": "^1.1.0",
"google-libphonenumber": "^2.0.7",
"googleapis": "^19.0.0",
"html-to-text": "^2.1.3",
"kue": "^0.11.5",
"mailgun-js": "^0.7.14",
"marked": "^0.3.6",
"minilog": "^3.0.1",
"moment": "^2.17.1",
"moment-timezone": "^0.5.13",
"monk": "^4.0.0",
"mustache": "^2.3.0",
"nation-pool": "github:brandnewcongress/nation-pool",
"nodemon": "^1.9.2",
"normalize-url": "^1.8.0",
"redis": "^2.7.1",
"request-promise": "^4.1.1",
"rollbar": "^0.6.2",
"superagent": "^3.6.0",
"to-camel-case": "^1.0.0",
"to-space-case": "^1.0.0",
"xml2js": "^0.4.17",
"yup": "^0.21.3"
}
}