forked from xiaoyuque-wati/next-supabase-ai-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 4.02 KB
/
package.json
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
71
72
73
74
75
76
77
78
79
80
{
"name": "next-supabase-ai-templates",
"version": "2.1.0",
"private": true,
"sideEffects": false,
"engines": {
"node": ">=v18.18.0"
},
"author": {
"url": "https://makerkit.dev",
"name": "MakerKit"
},
"scripts": {
"preinstall": "pnpm run --filter scripts requirements",
"postinstall": "manypkg fix",
"build": "turbo build --cache-dir=.turbo",
"clean": "git clean -xdf node_modules dist .next",
"clean:workspaces": "turbo clean",
"dev": "cross-env FORCE_COLOR=1 turbo dev --parallel",
"format": "turbo format --cache-dir=.turbo --continue -- --cache --cache-location='node_modules/.cache/.prettiercache' --ignore-path='../../.gitignore'",
"format:fix": "turbo format --cache-dir=.turbo --continue -- --write --cache --cache-location='node_modules/.cache/.prettiercache' --ignore-path='../../.gitignore'",
"lint": "turbo lint --cache-dir=.turbo --continue -- --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg check",
"lint:fix": "turbo lint --cache-dir=.turbo --continue -- --fix --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg fix",
"typecheck": "turbo typecheck --cache-dir=.turbo",
"test": "turbo test --cache-dir=.turbo",
"update": "pnpm update -r",
"syncpack:list": "pnpm dlx syncpack list-mismatches",
"syncpack:fix": "pnpm dlx syncpack fix-mismatches",
"dev:kanban": "pnpm --filter kanban dev",
"dev:avatars": "pnpm --filter ai-avatars dev",
"dev:chatbots": "pnpm --filter chatbots dev",
"dev:pdf": "pnpm --filter pdf-chat dev",
"dev:blog": "pnpm --filter blog-writer dev",
"split:web": "git subtree split -P apps/web -b web-branch",
"update:kanban": "git subtree pull --prefix=apps/kanban origin web-branch --squash",
"update:pdf": "git subtree pull --prefix=apps/pdf-chat origin web-branch --squash",
"update:chatbots": "git subtree pull --prefix=apps/chatbots origin web-branch --squash",
"update:ai-avatars": "git subtree pull --prefix=apps/ai-avatars origin web-branch --squash",
"update:blog": "git subtree pull --prefix=apps/blog-writer origin web-branch --squash",
"supabase:web:typegen": "pnpm --filter web supabase:typegen",
"supabase:kanban:start": "pnpm --filter kanban supabase:start",
"supabase:kanban:stop": "pnpm --filter kanban supabase:stop",
"supabase:kanban:typegen": "pnpm --filter kanban supabase:typegen",
"supabase:kanban:reset": "pnpm --filter kanban supabase:reset",
"supabase:avatars:start": "pnpm --filter ai-avatars supabase:start",
"supabase:avatars:stop": "pnpm --filter ai-avatars supabase:stop",
"supabase:avatars:typegen": "pnpm --filter ai-avatars supabase:typegen",
"supabase:avatars:reset": "pnpm --filter ai-avatars supabase:reset",
"supabase:chatbots:start": "pnpm --filter chatbots supabase:start",
"supabase:chatbots:stop": "pnpm --filter chatbots supabase:stop",
"supabase:chatbots:typegen": "pnpm --filter chatbots supabase:typegen",
"supabase:chatbots:reset": "pnpm --filter chatbots supabase:reset",
"supabase:pdf:start": "pnpm --filter pdf-chat supabase:start",
"supabase:pdf:stop": "pnpm --filter pdf-chat supabase:stop",
"supabase:pdf:typegen": "pnpm --filter pdf-chat supabase:typegen",
"supabase:pdf:reset": "pnpm --filter pdf-chat supabase:reset",
"supabase:blog:start": "pnpm --filter blog-writer supabase:start",
"supabase:blog:stop": "pnpm --filter blog-writer supabase:stop",
"supabase:blog:typegen": "pnpm --filter blog-writer supabase:typegen",
"supabase:blog:reset": "pnpm --filter blog-writer supabase:reset",
"stripe:listen": "pnpm --filter '@kit/stripe' start",
"env:generate": "turbo gen env",
"env:validate": "turbo gen validate-env"
},
"prettier": "@kit/prettier-config",
"packageManager": "pnpm@9.12.0",
"pnpm": {
"overrides": {
"react-is": "19.0.0"
}
},
"devDependencies": {
"@manypkg/cli": "^0.23.0",
"@turbo/gen": "^2.4.0",
"cross-env": "^7.0.3",
"prettier": "^3.3.3",
"turbo": "2.4.0",
"typescript": "^5.7.3"
}
}