-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.11 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.11 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "filmlab",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"generate:stock-luts": "python scripts/generate_stock_luts.py",
"dev": "concurrently -n server,client -c cyan,yellow \"pnpm run dev:server\" \"pnpm run dev:client\"",
"dev:client": "vite",
"dev:server": "pnpm --filter server dev",
"build": "pnpm run build:client && pnpm run build:server",
"build:client": "tsc -b && vite build",
"build:server": "pnpm --filter server build",
"preview": "vite preview",
"lint": "eslint src server/src shared --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "eslint src server/src shared --fix --cache --cache-location node_modules/.cache/.eslintcache",
"typecheck": "tsc -b && pnpm --filter server typecheck",
"dead-code": "knip --no-progress --no-exit-code --reporter compact",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"test": "vitest --run",
"test:watch": "vitest",
"verify:prompt": "vitest --run server/src/gateway/prompt server/src/gateway/router server/src/routes/image-generate server/src/chat/persistence/postgres.promptArtifacts.test.ts server/src/chat/persistence/__integration",
"verify:integration": "vitest --run server/src/chat/persistence/__integration",
"verify": "pnpm lint && pnpm test && pnpm build"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.46",
"@ai-sdk/google": "^3.0.30",
"@ai-sdk/openai": "^3.0.26",
"@ai-sdk/react": "^3.0.99",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@tanstack/react-query": "^5.51.24",
"@tanstack/react-router": "^1.87.6",
"@tanstack/react-virtual": "^3.13.12",
"ai": "^6.0.77",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"exifr": "^7.1.3",
"framer-motion": "^12.34.3",
"idb": "^8.0.0",
"konva": "^9.3.22",
"lucide-react": "^0.460.0",
"p-limit": "^7.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-konva": "^18.2.10",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^2.5.2",
"zod": "^4.3.6",
"zustand": "^4.5.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.0.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-test-renderer": "^19.1.0",
"@vitejs/plugin-react": "^6.0.1",
"@webgpu/types": "^0.1.69",
"autoprefixer": "^10.4.20",
"concurrently": "^9.2.1",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"knip": "^6.6.1",
"postcss": "^8.4.41",
"prettier": "^3.8.1",
"react-test-renderer": "18.3.1",
"tailwindcss": "^3.4.10",
"tsx": "^4.21.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.56.0",
"vite": "^8.0.0",
"vitest": "^4.1.0"
}
}