-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.46 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
{
"name": "chatkut",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"dev:convex": "node scripts/dev-convex.js",
"dev:all": "concurrently \"npm run dev:convex\" \"npm run dev\"",
"build": "next build",
"start": "next start -p 3001",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:headed": "playwright test --headed",
"test:report": "playwright show-report"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.68.0",
"@google/generative-ai": "^0.24.1",
"@remotion/cli": "^4.0.373",
"@remotion/lambda": "^4.0.373",
"@remotion/player": "^4.0.373",
"convex": "^1.16.0",
"dedalus-labs": "^0.1.0-alpha.4",
"hls.js": "^1.6.14",
"lucide-react": "^0.553.0",
"nanoid": "^5.1.6",
"next": "^14.2.0",
"openai": "^6.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.8",
"remotion": "^4.0.373",
"svix": "^1.81.0",
"tus-js-client": "^4.3.1"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"concurrently": "^9.2.1",
"eslint": "^8.0.0",
"eslint-config-next": "^14.2.0",
"prettier": "^3.0.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.0.0"
}
}