-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.1 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
{
"name": "agent-modus-map",
"version": "0.1.0",
"private": true,
"description": "Enterprise agent swarm planning and design platform",
"scripts": {
"dev:api": "tsx watch src/api/server.ts",
"dev:client": "vite",
"dev": "concurrently \"npm run dev:api\" \"npm run dev:client\"",
"build:api": "tsc -p tsconfig.api.json",
"build:client": "vite build",
"build": "npm run build:api && npm run build:client",
"start": "NODE_ENV=production node dist/api/api/server.js",
"start:api": "node dist/api/api/server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ tests/ --ext .ts,.tsx",
"lint:fix": "eslint src/ tests/ --ext .ts,.tsx --fix",
"seed": "tsx src/api/db/seed.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@xyflow/react": "^12.10.1",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^11.7.0",
"cors": "^2.8.5",
"express": "^4.21.0",
"jsonwebtoken": "^9.0.3",
"ruvector": "0.2.19",
"uuid": "^11.0.0",
"ws": "^8.19.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.12",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.10.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/supertest": "^6.0.0",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitejs/plugin-react": "^4.3.0",
"concurrently": "^9.1.0",
"eslint": "^8.57.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"supertest": "^7.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^2.1.0"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"pnpm": {
"overrides": {
"ruvector": "0.2.19"
}
}
}