-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "team-call-of-code",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"dotenv": "^17.2.2",
"zod": "^3.24.1",
"typescript": "^5",
"@types/bun": "^1.3.4",
"@prisma/client": "^7.1.0"
}
},
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"dev:server": "turbo -F server dev",
"db:push": "turbo -F @team-call-of-code/db db:push",
"db:studio": "turbo -F @team-call-of-code/db db:studio",
"db:generate": "turbo -F @team-call-of-code/db db:generate",
"db:migrate": "turbo -F @team-call-of-code/db db:migrate"
},
"dependencies": {
"@supabase/supabase-js": "^2.89.0",
"@team-call-of-code/env": "workspace:*",
"dotenv": "catalog:",
"uuid": "^13.0.0",
"zod": "catalog:"
},
"devDependencies": {
"turbo": "^2.6.3",
"typescript": "catalog:",
"@types/bun": "catalog:",
"@team-call-of-code/config": "workspace:*"
},
"packageManager": "bun@1.2.21"
}