-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.82 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@firstround/api",
"version": "1.0.0",
"description": "The API that powers First Round",
"main": "index.js",
"scripts": {
"run-install": "npm install",
"build": "tsc",
"start-fast": "nodemon build/index.js",
"start-ui": "nodemon --exec ts-node src/index.ts",
"start-pg": "NODE_ENV=PLAYGROUND nodemon --exec ts-node src/index.ts",
"start-prod": "NODE_ENV=PROD node build/index.js",
"start-ts": "ts-node src/index.ts",
"watch": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@google-cloud/storage": "^5.15.0",
"@typegoose/typegoose": "^9.0.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/graphql-upload": "^8.0.7",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.10.2",
"@types/node-cron": "^3.0.0",
"@types/nodemailer": "^6.4.4",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@graphql-tools/schema": "^8.2.0",
"@turf/center": "^6.5.0",
"@turf/distance": "^6.5.0",
"@turf/helpers": "^6.5.0",
"apollo-server-express": "^3.3.0",
"argon2": "^0.28.2",
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"class-validator": "^0.12.0",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"firebase": "^9.1.2",
"firebase-admin": "^9.12.0",
"googleapis": "^88.2.0",
"graphql": "^15.6.0",
"graphql-subscriptions": "^1.2.1",
"graphql-upload": "^12.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.8",
"node-cron": "^3.0.0",
"nodemailer": "^6.7.0",
"nodemon": "^2.0.13",
"reflect-metadata": "^0.1.13",
"subscriptions-transport-ws": "^0.9.19",
"tesseract.js": "^2.1.5",
"type-graphql": "^1.1.1"
}
}