-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.37 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
{
"name": "penplotter271",
"private": true,
"version": "1.4.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"gateway": "tsx gateway/server.ts",
"gateway:smoke": "tsx gateway/smoke.ts",
"build:gateway": "node scripts/build-gateway.mjs",
"test": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"typecheck:node": "tsc -p tsconfig.node.json",
"lint": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"gateway/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"gateway/**/*.ts\""
},
"dependencies": {
"@types/ws": "^8.18.1",
"konva": "^10.3.2",
"pdfjs-dist": "^6.3.289",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-konva": "^19.2.5",
"serialport": "^13.0.0",
"tsx": "^4.23.13",
"ws": "^8.21.3"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"@types/w3c-web-serial": "^1.0.6",
"@vitejs/plugin-react": "^6.1.1",
"@vitest/coverage-v8": "^5.0.0",
"esbuild": "^0.28.2",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"typescript": "^7.0.2",
"vite": "^8.2.2",
"vitest": "^5.0.0"
},
"allowScripts": {
"@serialport/bindings-cpp@13.0.0": true,
"esbuild@0.28.1": false
}
}