-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.27 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.27 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
{
"name": "app.agentset.ai",
"private": true,
"packageManager": "bun@1.3.6",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"db:deploy": "turbo -F @agentset/db db:deploy",
"db:studio": "turbo -F @agentset/db db:studio",
"db:migrate": "turbo -F @agentset/db db:migrate",
"db:generate": "turbo -F @agentset/db db:generate",
"dev:stripe": "stripe listen --forward-to localhost:3000/api/stripe/webhook --events checkout.session.completed,customer.subscription.updated,customer.subscription.deleted,invoice.payment_failed",
"dev": "turbo watch dev --continue",
"dev:web": "turbo watch dev -F @agentset/web...",
"dev:emails": "turbo watch dev -F @agentset/emails...",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "bunx sherif@latest",
"postinstall": "bun run lint:ws",
"typecheck": "turbo run typecheck",
"ui-add": "turbo run ui-add"
},
"devDependencies": {
"@agentset/prettier-config": "workspace:*",
"prettier": "catalog:",
"turbo": "^2.6.2",
"typescript": "catalog:"
},
"prettier": "@agentset/prettier-config",
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"tooling/*"
],
"catalog": {
"eslint": "^9.39.2",
"prettier": "^3.8.0",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"zod": "4.3.6",
"zod-error": "^2.0.0",
"zod-openapi": "5.4.6",
"@t3-oss/env-nextjs": "^0.13.10",
"ai": "^5.0.44",
"@tanstack/react-query": "^5.90.18",
"@trpc/client": "^11.7.2",
"@trpc/tanstack-react-query": "^11.7.2",
"@trpc/server": "^11.7.2",
"vitest": "^3.2.4"
},
"catalogs": {
"react19": {
"react": "19.2.3",
"react-dom": "19.2.3",
"@types/react": "19.2.6",
"@types/react-dom": "19.2.3"
}
}
}
}