-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) 路 2.07 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) 路 2.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
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
{
"name": "starlight",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"@prisma/client": "7.10.0",
"prisma-json-types-generator": "5.1.1",
"@prisma/adapter-pg": "7.10.0",
"@prisma/instrumentation": "^7.10.0",
"tsdown": "0.23.0",
"@orpc/server": "1.15.0",
"@orpc/client": "1.15.0",
"zod": "4.5.4",
"prisma": "7.10.0",
"grammy": "1.46.0",
"ky": "2.1.0"
}
},
"scripts": {
"lint": "oxlint --fix && ast-grep scan -c script/ast-grep/sgconfig.yml apps/server/src apps/starlight/src packages/api/src && turbo lint",
"typecheck": "turbo typecheck",
"test:ast-grep-rules": "ast-grep test -c script/ast-grep/sgconfig.yml",
"format": "turbo format",
"build": "turbo build",
"dev": "turbo dev",
"dev:web": "turbo -F web dev",
"dev:server": "turbo -F server dev",
"dev:starlight": "turbo -F @starlight/bot dev",
"start:server": "turbo -F server start",
"start:starlight": "turbo -F @starlight/bot start",
"start:web": "turbo -F web start",
"db:deploy": "turbo -F @starlight/utils db:deploy",
"db:generate": "turbo -F @starlight/utils db:generate",
"db:migrate": "turbo -F @starlight/utils db:migrate",
"queue:classify": "turbo -F server queue:classify",
"queue:embeddings": "turbo -F server queue:embeddings"
},
"dependencies": {},
"devDependencies": {
"@types/bun": "1.4.1",
"@typescript/native": "npm:typescript@7.0.2",
"eslint-plugin-github": "6.1.2",
"eslint-plugin-sonarjs": "4.2.0",
"lefthook": "2.1.12",
"oxfmt": "0.66.0",
"oxlint": "1.81.0",
"oxlint-plugin-react-doctor": "0.9.13",
"oxlint-tsgolint": "7.0.2001",
"tsdown": "0.23.0",
"turbo": "2.10.12",
"typescript": "7.0.2",
"ultracite": "7.11.0"
},
"packageManager": "bun@1.4.2",
"overrides": {
"@opentelemetry/core": "2.11.0",
"fast-uri": "3.1.5",
"find-my-way": "9.7.0",
"lodash": "4.18.0",
"valibot": "1.4.2"
},
"engines": {
"bun": ">=1.3.0"
}
}