-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.57 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.57 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
{
"name": "openwebcad",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "biome lint --write",
"lint-check": "biome lint",
"preview": "vite preview",
"stats": "npx cloc ./src",
"check-types": "tsc -p tsconfig.app.json --noEmit",
"test": "vitest",
"postinstall": "npx patch-package"
},
"dependencies": {
"@flatten-js/core": "^1.6.2",
"blend-promise-utils": "^1.29.2",
"blob-stream": "^0.1.3",
"clsx": "^2.1.1",
"es-toolkit": "^1.16.0",
"file-saver": "^2.0.5",
"jspdf": "^3.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-toastify": "^11.0.5",
"svg-parser": "^2.0.4",
"svg2pdf.js": "^2.5.0",
"teenyicons": "^0.4.1",
"undo-stacker": "^0.2.1",
"use-local-storage-state": "^19.5.0",
"dxf": "^5.2.0",
"xstate": "^5.18.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tailwindcss/postcss": "^4.1.3",
"@types/blob-stream": "^0.1.33",
"@types/dxf": "^4.6.10",
"@types/file-saver": "^2.0.7",
"@types/node": "^22.9.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/svg-parser": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react-swc": "^3.8.1",
"autoprefixer": "^10.4.21",
"biome": "^0.3.3",
"puppeteer": "^24.1.1",
"tailwindcss": "^4.1.3",
"typescript": "^5.2.2",
"vite": "^6.2.6",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.1.1"
}
}