-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 2.2 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 2.2 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
{
"name": "turn-based-mcp",
"version": "1.0.0",
"description": "Turn-based games platform with NextJS frontend and MCP server AI opponent",
"private": true,
"type": "module",
"workspaces": [
"shared",
"web",
"mcp-server"
],
"scripts": {
"dev": "npm run dev --workspace=web",
"dev:mcp": "npm run dev --workspace=mcp-server",
"build": "npm run build --workspace=shared && npm run build --workspace=web && npm run build --workspace=mcp-server",
"type-check": "npm run type-check --workspace=shared && npm run type-check --workspace=web && npm run type-check --workspace=mcp-server",
"clean": "npm run clean --workspace=shared && npm run clean --workspace=web && npm run clean --workspace=mcp-server",
"test": "npm run test --workspace=shared && npm run test --workspace=web && npm run test --workspace=mcp-server",
"test:watch": "npm run test:watch --workspace=shared",
"test:coverage": "npm run test:coverage --workspace=shared && npm run test:coverage --workspace=web && npm run test:coverage --workspace=mcp-server",
"lint": "npm run lint --workspace=shared && npm run lint --workspace=web && npm run lint --workspace=mcp-server",
"lint:fix": "npm run lint:fix --workspace=shared && npm run lint:fix --workspace=web && npm run lint:fix --workspace=mcp-server",
"lint:all": "npm run lint --workspace=shared && npm run lint --workspace=web && npm run lint --workspace=mcp-server",
"ci:tests": "npm run test --workspace=@turn-based-mcp/shared && npm run test --workspace=@turn-based-mcp/web && npm run test --workspace=@turn-based-mcp/mcp-server",
"ci": "npm run build --workspace=@turn-based-mcp/shared && npm run type-check && npm run build --workspace=@turn-based-mcp/web && npm run build --workspace=@turn-based-mcp/mcp-server && npm run ci:tests && npm run lint --workspace=@turn-based-mcp/web"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@vitest/ui": "^4.0.18",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
}
}