-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.78 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.78 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
{
"name": "react-live-sandbox",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src/",
"format": "prettier --write src/",
"test": "node test/runners/runAllTests.js",
"test:basic": "node test/api/testAgents.js",
"test:reliability": "node test/api/testReliability.js",
"test:orchestrator": "node test/api/testOrchestrator.js",
"test:modifications": "node test/api/testModifications.js",
"test:debugger": "node test/api/testDebugger.js",
"test:reviewer": "node test/api/testReviewerAgent.js",
"test:reflection": "node test/api/testReflectionLoop.js",
"test:agents": "node test/api/testAgentSystem.js",
"test:autogen": "node test/api/runAutoGenTests.js",
"test:integration": "node test/integration/endToEndTests.js"
},
"dependencies": {
"@babel/parser": "^7.28.4",
"@codesandbox/sandpack-react": "^2.19.12",
"@google/genai": "^1.34.0",
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/postcss": "^4.1.14",
"@vercel/analytics": "^1.6.1",
"firebase": "^12.4.0",
"firebase-admin": "^13.5.0",
"framer-motion": "^12.26.2",
"openai": "^6.5.0",
"pdf-parse": "^2.4.5",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.11.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.14",
"vercel": "^39.2.4",
"vite": "^6.0.5"
}
}