-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.36 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
{
"name": "atlas",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"hono": "^4.8.2",
"@trpc/server": "^11.5.0",
"dotenv": "^17.2.2",
"zod": "^4.1.11",
"typescript": "^5.8.2",
"tsdown": "^0.15.5",
"@trpc/client": "^11.5.0",
"drizzle-orm": "^0.44.7"
}
},
"scripts": {
"check": "oxlint",
"fix": "ultracite fix",
"prepare": "husky",
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"dev:web": "turbo -F web dev",
"dev:server": "turbo -F server dev",
"db:push": "turbo -F @atlas/db db:push",
"db:studio": "turbo -F @atlas/db db:studio",
"db:generate": "turbo -F @atlas/db db:generate",
"db:migrate": "turbo -F @atlas/db db:migrate"
},
"dependencies": {
"dotenv": "^17.2.2",
"drizzle-orm": "^0.44.7",
"zod": "^4.1.11"
},
"resolutions": {
"drizzle-orm": "^0.44.7"
},
"devDependencies": {
"turbo": "^2.5.4",
"@biomejs/biome": "2.3.3",
"ultracite": "6.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"oxlint": "^1.12.0",
"tsdown": "^0.15.5",
"@types/bun": "^1.2.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"bun x ultracite fix"
]
},
"packageManager": "bun@1.2.19"
}