-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 973 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 973 Bytes
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
{
"name": "open-kitchen-planner",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"shared-schemas",
"interop-cad/dxf-export",
"interop-cad/dxf-import",
"interop-sketchup/skp-import",
"planner-api",
"planner-frontend"
],
"scripts": {
"db:generate": "node scripts/prisma-generate.mjs",
"test": "npm run db:generate && vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/node": "^22.13.10",
"fast-check": "^4.5.3",
"prisma": "^5.22.0",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"dependencies": {
"@okp/dxf-export": "file:interop-cad/dxf-export",
"@okp/dxf-import": "file:interop-cad/dxf-import",
"@okp/shared-schemas": "file:shared-schemas",
"@okp/skp-import": "file:interop-sketchup/skp-import",
"@prisma/client": "^5.22.0",
"dxf-parser": "^1.1.2",
"dxf-writer": "^1.18.4",
"fastify": "^5.7.2",
"zod": "^3.23.8"
}
}