-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
{
"name": "campus-density-backend",
"description": "Backend for Campus Density.",
"version": "1.0.0",
"private": true,
"license": "AGPL-3.0-only",
"author": "Cornell Design & Tech Initiative",
"repository": {
"type": "git",
"url": "https://github.com/cornell-dti/campus-density-backend"
},
"engines": {
"node": "10"
},
"heroku-run-build-script": true,
"scripts": {
"build": "tsc -p ./",
"start": "node build/server.js",
"start-no-redis": "node build/server.js --no-redis",
"dev": "npm run build && npm run start-no-redis",
"dev-redis": "npm run build && npm run start",
"lint": "eslint . --ext .js --ext .ts"
},
"dependencies": {
"@google-cloud/datastore": "2.0.0",
"@google-cloud/pubsub": "^0.20.1",
"@google-cloud/storage": "^4.7.0",
"@types/express": "^4.17.3",
"@types/google-cloud__datastore": "^1.3.3",
"@types/ioredis": "^4.14.9",
"@types/node": "^11.15.7",
"@types/passport": "^1.0.3",
"body-parser": "^1.19.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-jwt": "^6.0.0",
"express-jwt-authz": "^1.0.0",
"firebase-admin": "^9.4.2",
"ioredis": "^4.16.0",
"jwks-rsa": "^1.7.0",
"moment": "^2.27.0",
"moment-timezone": "^0.5.31",
"passport": "^0.4.1",
"redis": "^3.0.2",
"safe-buffer": "^5.1.2",
"string-similarity": "^4.0.2",
"typescript": "^3.8.3",
"uuid": "^3.4.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1"
}
}