-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.31 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
{
"name": "sample-strands-visual-builder",
"private": true,
"version": "0.0.0",
"license": "MIT-0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"backend": "cd backend && python start_server.py",
"backend:install": "cd backend && pip install -r requirements.txt",
"dev:full": "concurrently \"npm run backend\" \"npm run dev\""
},
"dependencies": {
"@aws-amplify/ui-react": "^6.12.0",
"@cloudscape-design/chat-components": "^1.0.63",
"@cloudscape-design/code-view": "^3.0.69",
"@cloudscape-design/components": "^3.0.1078",
"@cloudscape-design/global-styles": "^1.0.45",
"aws-amplify": "^6.15.5",
"axios": "^1.12.2",
"lucide-react": "^0.542.0",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-markdown": "^9.1.0",
"react-router-dom": "^7.8.2",
"reactflow": "^11.11.4",
"remark-gfm": "^4.0.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"concurrently": "^9.0.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"vite": "^7.1.2"
}
}