-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.34 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
{
"name": "jiahui-activity-agent",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "面向高校集体活动策划与执行的结构化智能 Agent",
"packageManager": "npm@11.6.2",
"scripts": {
"dev": "concurrently -k -n server,web -c blue,green \"npm:dev:server\" \"npm:dev:web\"",
"dev:server": "tsx watch server/index.ts",
"dev:web": "vite --host 127.0.0.1",
"build": "tsc -p tsconfig.server.json && vite build",
"start": "node dist-server/server/index.js",
"check": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.server.json",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"dotenv": "^17.2.1",
"express": "^5.1.0",
"jszip": "^3.10.1",
"lucide-react": "^0.468.0",
"mammoth": "^1.12.1",
"multer": "^2.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"zod": "^4.0.17"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/multer": "^2.2.0",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@types/supertest": "^6.0.3",
"@vitejs/plugin-react": "^5.0.2",
"concurrently": "^9.2.1",
"supertest": "^7.1.4",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20"
}
}