-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.37 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.37 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "flex-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm-run-all --parallel dev:frontend dev:backend",
"dev:frontend": "vite --port=4000 --open",
"dev:backend": "convex dev",
"build": "vite build",
"lint": "tsc -p convex -noEmit --pretty false && tsc -p . -noEmit --pretty false && convex dev --once && vite build",
"test": "vitest --run",
"test:watch": "vitest",
"test:skills": "vitest --run convex/agentSkills.test.ts",
"setup-diagram-mcp": "tsx scripts/setup-aws-diagram-mcp.ts",
"generate-diagram": "tsx scripts/generate-architecture-diagram-simple.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@auth/core": "^0.37.0",
"@aws-sdk/client-bedrock-agent": "^3.913.0",
"@aws-sdk/client-bedrock-agent-runtime": "^3.911.0",
"@aws-sdk/client-bedrock-runtime": "^3.913.0",
"@aws-sdk/client-cloudformation": "^3.913.0",
"@aws-sdk/client-cloudwatch-logs": "^3.701.0",
"@aws-sdk/client-cognito-identity-provider": "^3.914.0",
"@aws-sdk/client-lambda": "^3.913.0",
"@aws-sdk/client-polly": "^3.917.0",
"@aws-sdk/client-s3": "^3.917.0",
"@aws-sdk/client-sts": "^3.911.0",
"@aws-sdk/s3-request-presigner": "^3.917.0",
"@convex-dev/auth": "^0.0.80",
"@modelcontextprotocol/sdk": "^1.20.1",
"@types/react-syntax-highlighter": "^15.5.13",
"clsx": "^2.1.1",
"convex": "^1.24.2",
"framer-motion": "^12.23.24",
"jszip": "^3.10.1",
"lucide-react": "^0.545.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-syntax-highlighter": "^15.6.6",
"reactflow": "^11.11.4",
"sonner": "^2.0.3",
"stripe": "^20.3.1",
"tailwind-merge": "^3.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "~10",
"convex-test": "^0.0.38",
"dotenv": "^16.4.7",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"npm-run-all": "^4.1.5",
"postcss": "~8",
"prettier": "^3.5.3",
"tailwindcss": "~3",
"tsx": "^4.19.2",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^7.1.9",
"vitest": "^3.2.4"
}
}