-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.48 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
{
"name": "sourcebound",
"version": "0.2.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "concurrently -k \"npm:dev:server\" \"npm:dev:web\"",
"dev:server": "tsx watch server/index.ts",
"dev:web": "vite",
"build": "tsc -b && vite build",
"benchmark": "tsx server/benchmark.ts",
"eval:retrieval": "tsx server/retrieval-eval.ts",
"verify:keyboard": "tsx scripts/keyboard-verify.ts",
"start": "tsx server/index.ts",
"test": "vitest run",
"lint": "eslint ."
},
"dependencies": {
"express": "^5.1.0",
"lucide-react": "^0.468.0",
"multer": "^2.0.2",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/express": "^5.0.3",
"@types/multer": "^2.0.0",
"@types/node": "^22.17.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@types/supertest": "^7.2.1",
"@vitejs/plugin-react": "^4.7.0",
"axe-core": "^4.12.1",
"concurrently": "^9.2.0",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"jsdom": "^29.1.1",
"playwright-core": "^1.62.1",
"supertest": "^7.2.2",
"tsx": "^4.20.3",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.0",
"vite": "^7.1.0",
"vitest": "^3.2.4"
}
}