-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"name": "plotterbench",
"version": "0.2.0",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "concurrently -n server,web -c green,cyan -k \"npm:dev:server\" \"npm:dev:web\"",
"dev:server": "PLOTTERBENCH_DATA_DIR=.data tsx watch server/src/index.ts",
"dev:web": "vite",
"build": "npm run build:server && npm run build:web",
"build:server": "tsc -p server",
"build:web": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"test:bless": "BLESS=1 vitest run server/test/capture-harness.test.ts",
"start": "NODE_ENV=production node server/dist/server/src/index.js"
},
"dependencies": {
"@serialport/parser-readline": "^12.0.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"serialport": "^12.0.0",
"svg-path-properties": "^1.3.0",
"svgson": "^5.3.1",
"ws": "^8.18.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.5.10",
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^8.2.2",
"tsx": "^4.7.1",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vitest": "^4.1.7"
}
}