-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.01 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": "super-platform",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"postinstall": "bun run --cwd packages/db db:generate",
"dev:web": "turbo dev --filter=web",
"dev:api": "turbo dev --filter=api",
"dev:terminal": "turbo dev --filter=supercode-cli-client",
"dev:terminal-server": "turbo dev --filter=supercode-cli-server",
"dev:docs": "turbo dev --filter=docs",
"dev:video": "bun run --cwd apps/video dev",
"build:video": "bun run --cwd apps/video build",
"build:video:square": "bun run --cwd apps/video build:square",
"build:video:vertical": "bun run --cwd apps/video build:vertical"
},
"devDependencies": {
"turbo": "^2.5.8"
},
"packageManager": "bun@1.2.21",
"dependencies": {
"-": "^0.0.1",
"@pinecone-database/pinecone": "^7.0.0",
"g": "^2.0.1",
"inngest": "^3.52.0",
"vercel": "^50.13.2"
}
}