-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.57 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
{
"name": "check-health",
"version": "1.0.0",
"description": "",
"main": "server.tsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx tsx server.tsx",
"deploy": "gcloud run deploy check-health --source . --region europe-north1",
"dev": "npx tsx watch --env-file=.env server.tsx",
"cloud-sql-proxy": "./cloud-sql-proxy check-health-437712:us-central1:check-health &",
"download-cloud-sql-proxy": "curl -o cloud-sql-proxy https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy/v2.13.0/cloud-sql-proxy.darwin.amd64",
"logs-tail": "gcloud run services logs read check-health --limit=10 --project check-health-437712 --region europe-north1",
"logs": "gcloud beta run services logs tail check-health --project check-health-437712 --region europe-north1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@google-cloud/cloud-sql-connector": "^1.4.0",
"axios": "^1.7.7",
"cors": "^2.8.5",
"cron": "^3.2.1",
"express": "^4.21.0",
"express-jwt": "^8.4.1",
"express-ws": "^5.0.2",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"luxon": "^3.5.0",
"mongodb": "^6.9.0",
"pg": "^8.13.0",
"tslib": "^2.8.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/cron": "^2.0.1",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/luxon": "^3.4.2",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}