-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.12 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.12 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
{
"name": "agenthackathons",
"version": "1.0.0",
"description": "",
"main": "server/index.ts",
"directories": {
"test": "tests"
},
"scripts": {
"dev:server": "tsx server/cli.ts",
"dev:ui": "vite",
"dev": "npm run dev:server",
"build:ui": "vite build",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "npm run test:server && npm run test:ui",
"test:ui": "node scripts/run-with-tmpdir.mjs vitest run --config vitest.ui.config.ts",
"test:server": "node scripts/run-with-tmpdir.mjs vitest run --config vitest.config.ts",
"test:coverage:server": "mkdir -p coverage/server-json/.tmp && node scripts/run-with-tmpdir.mjs vitest run --config vitest.config.ts --coverage --coverage.reporter=json --coverage.reportsDirectory coverage/server-json",
"test:coverage:ui": "mkdir -p coverage/ui-json/.tmp && node scripts/run-with-tmpdir.mjs vitest run --config vitest.ui.config.ts --coverage --coverage.reporter=json --coverage.reportsDirectory coverage/ui-json",
"test:coverage": "npm run test:coverage:server && npm run test:coverage:ui",
"validate": "npm run lint && npm run typecheck && npm run build:ui && npm run test:coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^7.2.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0",
"jsdom": "^29.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^8.0.0",
"vitest": "^4.1.0"
}
}