-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.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
{
"name": "backend",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"gen": "cd proto && bunx buf generate",
"dev:backend": "bun --watch src/server.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"start": "bun run src/server.ts",
"init_key": "bun run src/utils/generateInitialAPIKey.ts",
"format": "bunx prettier --write .",
"proto:pull": "git submodule update --remote --merge proto",
"proto:push": "cd proto && git add . && git commit -s -m \"$1\" && git push && cd .."
},
"devDependencies": {
"@bufbuild/protoc-gen-connect-es": "^0.13.0",
"@bufbuild/protoc-gen-es": "^2.9.0",
"@types/bun": "latest",
"@types/luxon": "^3.7.1",
"@vitest/ui": "^4.0.3",
"buf": "bufbuild/buf",
"drizzle-kit": "^0.31.6",
"tsx": "^4.20.6",
"vitest": "^4.0.3"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@bufbuild/protobuf": "^2.9.0",
"@connectrpc/connect": "^2.1.0",
"@connectrpc/connect-node": "^2.1.0",
"@connectrpc/validate": "^0.2.0",
"@lemonsqueezy/lemonsqueezy.js": "^4.0.0",
"@libsql/client": "^0.15.15",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.7",
"luxon": "^3.7.2",
"mysql2": "^3.15.3",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"postgres": "^3.4.7",
"zod": "^4.1.12"
}
}