-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "agentic-client-server-base",
"version": "0.0.0",
"license": "MIT",
"private": true,
"packageManager": "pnpm@10.17.1",
"pnpm": {
"onlyBuiltDependencies": [
"chromedriver",
"esbuild",
"mongodb-memory-server",
"nx"
]
},
"workspaces": [
"apps/*",
"libs/*"
],
"scripts": {
"build": "nx run-many --target=build --all",
"build:api": "nx build api",
"build:web": "nx build web",
"serve:api": "nx serve api",
"serve:web": "nx serve web",
"test": "nx run-many --target=test --all",
"test:api": "nx test api",
"test:web": "nx test web",
"e2e:api": "nx test api-e2e",
"e2e:web": "nx e2e web-e2e",
"restart:api": "bash scripts/restart-api.sh",
"restart:web": "bash scripts/restart-web.sh",
"restart:both": "bash scripts/restart-both.sh",
"seed:workflows": "node scripts/seed-workflow-configs.js",
"seed:channels": "node scripts/seed-channels.js",
"create-root-group": "node scripts/create-new-root-group.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@msgpack/msgpack": "^3.1.3",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"ioredis": "^5.10.1",
"jsonata": "^2.1.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^1.14.0",
"mongodb": "^7.2.0",
"mongoose": "^8.4.1",
"msgpackr": "^2.0.4",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router-dom": "^6.23.1",
"tslib": "^2.8.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@nx/esbuild": "^20.0.0",
"@nx/jest": "^20.0.0",
"@nx/js": "^20.0.0",
"@nx/node": "^20.0.0",
"@nx/react": "^20.0.0",
"@nx/web": "^20.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/mocha": "^10.0.10",
"@types/node": "^20.14.2",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.17",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^6.0.2",
"@types/ws": "^8.18.1",
"@wdio/cli": "^8.39.0",
"@wdio/globals": "^8.46.0",
"@wdio/local-runner": "^8.39.0",
"@wdio/mocha-framework": "^8.39.0",
"@wdio/spec-reporter": "^8.39.0",
"@wdio/types": "^8.41.0",
"chromedriver": "^125.0.0",
"esbuild": "^0.19.2",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"mongodb-memory-server": "^10.4.3",
"nodemon": "^3.1.3",
"nx": "^20.0.0",
"postcss": "^8.5.12",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1",
"supertest": "^7.0.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.2",
"wdio-chromedriver-service": "^8.1.1"
}
}