-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.28 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
{
"name": "example-ai-and-user-generated-actors-freestyle",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"pnpm run dev:backend\" \"pnpm run dev:frontend\"",
"dev:backend": "tsx src/index.ts",
"dev:frontend": "vite",
"build:frontend": "vite build",
"build:backend": "tsup",
"preview": "vite preview",
"build": "npm run build:backend && npm run build:frontend",
"check-types": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"@monaco-editor/react": "^4.7.0",
"@rivet-gg/cloud": "https://pkg.pr.new/rivet-dev/cloud/@rivet-gg/cloud@715f221",
"@rivetkit/engine-api-full": "latest",
"dotenv": "^17.2.2",
"execa": "^9.5.2",
"freestyle-sandboxes": "^0.0.95",
"hono": "^4.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^22.13.9",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"concurrently": "^8.2.2",
"tsx": "^3.12.7",
"typescript": "^5.5.2",
"vite": "^5.0.0",
"vitest": "^2.1.8"
},
"template": {
"technologies": [
"react",
"hono",
"typescript"
],
"tags": [
"ai"
],
"priority": 400,
"frontendPort": 5173
},
"license": "MIT"
}