-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.67 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
{
"name": "concourse",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Concourse — Your AI companion at every gate, seat, and section. Smart-stadium GenAI companion built for PromptWars Virtual Challenge 4 (FIFA World Cup 2026).",
"workspaces": [
"shared",
"backend",
"frontend"
],
"engines": {
"node": ">=22 <25"
},
"scripts": {
"dev": "concurrently -n backend,frontend -c cyan,magenta \"npm run dev -w backend\" \"npm run dev -w frontend\"",
"build": "npm run build -w shared && npm run build -w backend && npm run build -w frontend",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:frontend": "npm run test -w frontend",
"test:frontend:coverage": "npm run test:coverage -w frontend",
"test:e2e": "npm run test:e2e -w frontend",
"import:metlife": "tsx scripts/import-mappedin.ts",
"import:metlife:write": "tsx scripts/import-mappedin.ts --write",
"clean": "rm -rf shared/dist backend/dist frontend/dist"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@testing-library/dom": "10.4.1",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.170.0",
"concurrently": "^8.2.2",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.63.0"
},
"dependencies": {
"uuid": "^14.0.1"
},
"overrides": {
"vite": "8.1.5",
"@vitejs/plugin-react": "^4.3.1",
"vitest": "^4.1.10",
"acorn": "^8.15.0"
}
}