-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.79 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.79 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
{
"name": "bluebox",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "concurrently --raw \"yarn dev:server\" \"yarn dev:client\"",
"dev:server": "tsx watch --tsconfig tsconfig.server.json src/index.ts",
"dev:client": "vite",
"build": "yarn build:client && yarn build:server",
"build:client": "vite build",
"build:server": "esbuild src/index.ts --platform=node --bundle --outfile=dist/index.cjs --external:@serialport",
"start": "node dist/index.cjs",
"lint": "eslint ."
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fontsource/roboto": "^5.1.0",
"@mui/icons-material": "^6.1.5",
"@mui/material": "^6.1.5",
"chalk": "^4",
"express": "^4.21.1",
"interweave": "^13.1.0",
"jotai": "^2.10.1",
"konva": "^9.3.16",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-konva": "^18.2.10",
"recharts": "^2.13.2",
"serialport": "^12.0.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/express": "^5.0.0",
"@types/node": "^22.8.1",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/serialport": "^8.0.5",
"@vitejs/plugin-react-swc": "^3.5.0",
"concurrently": "^9.0.1",
"esbuild": "^0.24.0",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.13",
"globals": "^15.11.0",
"nodemon": "^3.1.7",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"vite": "^5.4.9"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}