-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.66 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
{
"name": "mcp-adventure",
"version": "1.0.0",
"description": "MCP Adventure Game with integrated frontend and backend",
"main": "dist/server/index.js",
"scripts": {
"dev:client": "cd client && vite",
"build:server": "tsc -p tsconfig.server.json",
"start:server": "node dist/server/index.js",
"dev": "npm run build:server && concurrently \"npm run dev:client\" \"npm run start:server\"",
"build:client": "cd client && vite build",
"build": "npm run build:client && npm run build:server",
"start": "node dist/server/index.js",
"clean": "rimraf dist"
},
"dependencies": {
"@xenova/transformers": "^2.17.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"faiss-node": "^0.5.1",
"js-yaml": "^4.1.0",
"openai": "^4.95.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^8.18.1",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.17",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react-swc": "^3.8.0",
"concurrently": "^8.2.2",
"eslint": "^9.22.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"nodemon": "^3.1.10",
"rimraf": "^5.0.10",
"ts-node-dev": "^2.0.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.3.1"
}
}