-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.33 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
{
"name": "reelpod-studio",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "bash -c 'set -a; source backend/.env; set +a; fuser -k 8000/tcp 2>/dev/null || true; fuser -k 3100/tcp 2>/dev/null || true; sleep 1; (cd backend && exec uv run python -m uvicorn main:app --reload --host 127.0.0.1 --port 8000) & backend_pid=$!; bash start-acestep.sh & acestep_pid=$!; bun src/mcp/sse.ts & sse_pid=$!; trap \"kill $backend_pid $acestep_pid $sse_pid 2>/dev/null\" EXIT; vite'",
"dev:acestep": "bash -c 'set -a; source backend/.env; set +a; bash start-acestep.sh'",
"dev:frontend": "vite",
"dev:mcp": "bun src/mcp/sse.ts",
"dev:full": "bash -c 'bun src/mcp/sse.ts & sse_pid=$!; trap \"kill $sse_pid 2>/dev/null\" EXIT; vite'",
"dev:backend": "bash -c 'cd backend && uv run python -m uvicorn main:app --reload --host 127.0.0.1 --port 8000'",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix && prettier --write .",
"format": "prettier --write .",
"test": "vitest run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@quinteroac/agents-coding-toolkit": "^0.2.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@react-three/postprocessing": "^3.0.4",
"elysia": "^1.4.28",
"fix-webm-duration": "^1.0.6",
"impeccable": "pbakaus/impeccable",
"mediabunny": "^1.39.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"skills": "^1.4.5",
"three": "^0.183.1",
"tsx": "^4.21.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^25.3.3",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@types/three": "^0.183.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "10.4.27",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^25.0.1",
"postcss": "8.5.6",
"prettier": "^3.8.1",
"tailwindcss": "3.4.17",
"typescript": "^5.6.3",
"vite": "^6.0.1",
"vitest": "^2.1.8"
}
}