-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.34 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.34 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
68
69
70
71
72
73
74
75
76
77
{
"name": "backend",
"scripts": {
"dev": "NODE_ENV=development bun run --hot src/server.ts",
"start": "NODE_ENV=production bun run --hot src/server.ts",
"lint": "eslint '**/*.ts'",
"lint:fix": "eslint '**/*.ts' --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generate": "bun drizzle-kit generate",
"migrate": "bun drizzle-kit migrate",
"test": "NODE_ENV=test ./scripts/test.sh",
"db:up": "./scripts/start-db.sh",
"db:down": "./scripts/stop-db.sh",
"gen": "bun scripts/generate.ts",
"db:studio": "bunx drizzle-kit studio"
},
"type": "module",
"dependencies": {
"@aws-sdk/client-iam": "^3.774.0",
"@aws-sdk/client-s3": "^3.731.1",
"@aws-sdk/client-scheduler": "^3.744.0",
"@aws-sdk/s3-request-presigner": "^3.733.0",
"@blgc/openapi-router": "^0.1.0",
"@breezystack/lamejs": "^1.2.7",
"@eslint/js": "^10.0.1",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@hono/node-server": "^1.13.8",
"@hono/zod-validator": "^0.7.6",
"@jest/globals": "^30.2.0",
"@scalar/hono-api-reference": "^0.9.40",
"@supabase/supabase-js": "^2.48.1",
"@types/aws-lambda": "^8.10.147",
"@types/crypto-js": "^4.2.2",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.7",
"aws-sdk-client-mock": "^4.1.0",
"crypto": "^1.0.1",
"dotenv": "^17.2.4",
"drizzle-orm": "^0.45.1",
"drizzle-seed": "^0.3.0",
"drizzle-zod": "^0.8.3",
"eslint": "^10.0.0",
"expo": "^54.0.33",
"expo-constants": "~18.0.13",
"expo-device": "~8.0.10",
"expo-notifications": "~0.32.16",
"expo-server-sdk": "^5.0.0",
"ffmpeg-static": "^5.2.0",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.3",
"globals": "^17.3.0",
"hono": "^4.6.14",
"jest": "^30.2.0",
"jsonwebtoken": "^9.0.2",
"nanoid": "^5.0.9",
"pino": "^10.3.0",
"pino-pretty": "^13.0.0",
"postgres": "^3.4.5",
"prettier": "^3.4.2",
"sharp": "^0.34.5",
"stream": "^0.0.3",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript-eslint": "^8.19.1",
"uuid": "^13.0.0",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/ffprobe-static": "^2.0.3",
"@types/pg": "^8.11.10",
"drizzle-kit": "^0.31.9",
"openapi-typescript": "^7.4.4"
}
}