-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.55 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
{
"name": "project-managair",
"version": "0.1.0",
"private": true,
"description": "Local, read-only multi-project implementation Cockpit",
"type": "module",
"scripts": {
"dev": "tsx server.ts",
"build": "tsc --noEmit && vite build",
"start": "tsx server.ts --production",
"test": "vitest run",
"test:unit": "vitest run tests/domain.test.ts tests/components.test.tsx",
"test:boundary": "vitest run tests/boundary.test.ts",
"test:e2e": "playwright test",
"check": "npm run test && npm run build && npm run test:e2e",
"import:json": "tsx scripts/import-json.ts",
"db:migrate": "tsx -e \"import('./src/db.ts').then(({openProjectManagairDatabase}) => { const ctx = openProjectManagairDatabase(); console.log(JSON.stringify({dbPath: ctx.dbPath, migrationsApplied: ctx.migrationsApplied})); ctx.db.close(); })\""
},
"engines": {
"node": ">=22"
},
"dependencies": {
"express": "^5.1.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"zod": "^4.1.5"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@playwright/test": "^1.55.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/express": "^5.0.3",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.2",
"jsdom": "^26.1.0",
"tsx": "^4.23.1",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vitest": "^3.2.4"
}
}