-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
{
"name": "roguenode",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm-run-all --parallel dev:frontend dev:backend",
"dev:frontend": "next dev",
"dev:backend": "convex dev",
"predev": "convex dev --until-success && convex dashboard",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix && biome check --write .",
"planning:prompt": "node scripts/generate-pddl-llm.mjs",
"planning:refresh": "node scripts/run-planning.mjs"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.32",
"@clerk/clerk-react": "^5.47.0",
"@clerk/nextjs": "^6.32.0",
"@convex-dev/agent": "^0.2.10",
"@xyflow/react": "^12.8.5",
"ai": "^5.0.48",
"convex": "^1.27.1",
"lucide-react": "^0.544.0",
"next": "15.5.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"zod": "^4.1.11"
},
"devDependencies": {
"@convex-dev/eslint-plugin": "0.0.1-alpha.4",
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.1.13",
"@types/node": "^20.19.17",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"eslint": "^9.36.0",
"eslint-config-next": "15.5.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.13",
"typescript": "^5.9.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@tailwindcss/oxide"
]
}
}