-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.5 KB
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
{
"name": "lawmakers-manager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"lawmakers-manager": "update-from-propublica.js"
},
"directories": {
"lib": "lib"
},
"scripts": {
"update-retiring": "node bin/update-retiring",
"seed-federal": "node bin/seed-federal-db-from-propublica.js",
"seed-federal-candidates": "node local-scripts/candidates.js",
"update-federal": "node bin/update-firestore-from-propublica.js",
"get-state-lawmakers": "node openstates/get-state-lawmakers.js",
"get-senate-whip-count": "node bin/senate-whip.js",
"test": "NODE_ENV=dev jest --env node --forceExit",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/townhallproject/lawmakers-manager.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/townhallproject/lawmakers-manager/issues"
},
"homepage": "https://github.com/townhallproject/lawmakers-manager#readme",
"dependencies": {
"@google-cloud/firestore": "^2.6.0",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"firebase-admin": "^8.7.0",
"google-auth-library": "^6.0.6",
"googleapis": "^39.2.0",
"mailgun-js": "^0.20.0",
"moment": "^2.24.0",
"superagent": "^3.8.3"
},
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^24.9.0"
}
}