-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.14 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
85
86
87
88
89
90
91
92
{
"name": "perplexity-computer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:all": "npx concurrently --names next,bolt,code --prefix-colors cyan,magenta,green \"next dev\" \"cd bolt-diy && pnpm run dev\" \"node scripts/code-server-proxy.mjs\"",
"dev:bolt": "cd bolt-diy && pnpm run dev",
"dev:code-server": "node scripts/code-server-proxy.mjs",
"dev:opendaw": "cd opendaw && npm run dev:studio",
"dev:blockbench": "cd blockbench && npm run serve",
"services:start": "pm2 start pm2.config.cjs",
"services:stop": "pm2 stop all",
"services:restart": "pm2 restart all",
"services:logs": "pm2 logs",
"services:status": "pm2 status",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:report": "playwright show-report"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@google/generative-ai": "^0.24.1",
"@libsql/client": "^0.17.3",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.6",
"@supabase/supabase-js": "^2.105.1",
"@tiptap/extension-character-count": "^3.22.3",
"@tiptap/extension-code-block-lowlight": "^3.22.3",
"@tiptap/extension-color": "^3.22.3",
"@tiptap/extension-highlight": "^3.22.3",
"@tiptap/extension-image": "^3.22.3",
"@tiptap/extension-link": "^3.22.3",
"@tiptap/extension-placeholder": "^3.22.3",
"@tiptap/extension-table": "^3.22.3",
"@tiptap/extension-table-cell": "^3.22.3",
"@tiptap/extension-table-header": "^3.22.3",
"@tiptap/extension-table-row": "^3.22.3",
"@tiptap/extension-task-item": "^3.22.3",
"@tiptap/extension-task-list": "^3.22.3",
"@tiptap/extension-text-align": "^3.22.3",
"@tiptap/extension-text-style": "^3.22.3",
"@tiptap/extension-typography": "^3.22.3",
"@tiptap/extension-underline": "^3.22.3",
"@tiptap/pm": "^3.22.3",
"@tiptap/react": "^3.22.3",
"@tiptap/starter-kit": "^3.22.3",
"@tiptap/suggestion": "^3.22.3",
"@types/bcryptjs": "^2.4.6",
"autoprefixer": "^10.4.27",
"bcryptjs": "^3.0.3",
"cheerio": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.15.0",
"jose": "^6.2.3",
"lowlight": "^3.3.0",
"lucide-react": "^0.469.0",
"next": "15.1.4",
"node-fetch": "^3.3.2",
"openai": "^6.27.0",
"playwright": "^1.58.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"stripe": "^22.1.0",
"tailwind-merge": "^2.6.0",
"uuid": "^11.0.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"concurrently": "^9.2.1",
"eslint": "^8",
"eslint-config-next": "15.1.4",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.19",
"typescript": "^5"
}
}