-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
{
"name": "mutual-aid-network-server",
"version": "1.0.0",
"description": "server mutual aid hub",
"main": "index.js",
"engines": {
"node": "^12.0",
"npm": ">= 6.14.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"read": "node bin/read-google-sheets",
"read-food": "node bin/read-fridge-google-sheet",
"write-tileset": "node bin/tileset.js",
"start": "node index.js",
"clear-deleted": "node bin/delete-networks.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/townhallproject/mutual-aid-networks-server.git"
},
"author": "Megan Riel-Mehan",
"license": "ISC",
"bugs": {
"url": "https://github.com/townhallproject/mutual-aid-networks-server/issues"
},
"homepage": "https://github.com/townhallproject/mutual-aid-networks-server#readme",
"dependencies": {
"@google-cloud/firestore": "^3.7.0",
"@google/maps": "^0.3.1",
"@mapbox/mbtiles": "^0.11.0",
"aws-sdk": "^2.648.0",
"cors": "^2.8.5",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-request-proxy": "^2.2.2",
"firebase-admin": "^8.7.0",
"firebaseui": "^1.0.0",
"geo-distance": "^0.1.2",
"geolib": "^2.0.24",
"google-auth-library": "^0.12.0",
"google-maps": "^3.2.1",
"googleapis": "^24.0.0",
"moment": "^2.21.0",
"moment-timezone": "^0.5.26",
"morgan": "^1.9.1",
"superagent": "^3.8.3"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0"
}
}