-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "pipeline",
"private": true,
"engines": {
"node": ">=v18.17.1"
},
"scripts": {
"build": "pnpm -r --if-present run build",
"db:generate": "pnpm -r --if-present run db:generate",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "pnpm -r --if-present run clean",
"dev": "pnpm -r --if-present --parallel run dev",
"format": "biome format --write .",
"lint": "biome lint .",
"manypkg": "manypkg check",
"lint:fix": "biome check --write .",
"manypkg:fix": "manypkg fix",
"type-check": "pnpm -r --if-present run type-check",
"test": "pnpm -r --if-present run test"
},
"dependencies": {
"@biomejs/biome": "2.3.11",
"@libsql/client": "0.17.0",
"@manypkg/cli": "0.25.1",
"@types/node": "25.0.9",
"drizzle-orm": "0.45.1",
"drizzle-zod": "0.8.3",
"typescript": "5.9.3",
"zod": "4.3.5"
},
"packageManager": "pnpm@9.12.2",
"workspaces": [
"apps/*",
"packages/*",
"packages/config/*",
"packages/integrations/*",
"packages/schemas/*",
"packages/functions/*"
]
}