-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.9 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
63
64
65
66
67
{
"name": "fieldtrack-api",
"version": "1.0.0",
"description": "FieldTrack 2.0 Backend API",
"main": "dist/server.js",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint src/modules --ext .ts",
"start": "node dist/server.js",
"test": "vitest run",
"test:watch": "vitest",
"analytics:backfill": "tsx scripts/analytics-backfill.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@fastify/compress": "^8.3.1",
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.71.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.213.0",
"@opentelemetry/resources": "^2.0.0",
"@opentelemetry/sdk-node": "^0.213.0",
"@opentelemetry/sdk-trace-base": "^2.0.0",
"@scalar/fastify-api-reference": "^1.48.2",
"@supabase/supabase-js": "^2.99.0",
"bullmq": "^5.70.4",
"dotenv": "^17.3.1",
"fastify": "^5.8.3",
"fastify-plugin": "^5.1.0",
"fastify-type-provider-zod": "^6.1.0",
"ioredis": "^5.10.0",
"jsonwebtoken": "^9.0.3",
"jwks-rsa": "^4.0.1",
"prom-client": "^15.1.3",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@fastify/jwt": "^10.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.4.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.3",
"pino-pretty": "^13.1.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vitest": "^4.0.18"
},
"optionalDependencies": {
"@rollup/rollup-darwin-x64": "^4.0.0",
"@rollup/rollup-linux-x64-gnu": "^4.0.0"
}
}