-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.09 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
{
"name": "apollo",
"private": true,
"type": "module",
"packageManager": "bun@1.3.13",
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"dev": "turbo run dev --filter=!create-heyapollo",
"dev:agent": "turbo run dev --filter=@apollo/agent",
"dev:console": "turbo run dev --filter=@apollo/console",
"dev:wizard": "bun run --cwd apps/wizard dev",
"build": "turbo run build",
"deploy": "turbo run deploy",
"types": "turbo run types",
"typecheck": "turbo run typecheck",
"lint": "oxlint --deny-warnings",
"format": "oxfmt --write",
"format:check": "oxfmt --check",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"check": "bun run lint && bun run format:check && turbo run typecheck test"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@oxlint/plugins": "1.78.0",
"@types/bun": "latest",
"@types/node": "^25.9.5",
"lefthook": "^2.1.10",
"oxfmt": "^0.47.0",
"oxlint": "1.78.0",
"turbo": "^2.5.0",
"typescript": "^5.9.3"
}
}