-
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.69 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.69 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": "magic-mirror",
"private": true,
"version": "0.0.0",
"main": "electron.cjs",
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"nodemon server.js\"",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"preview:electron": "vite preview --host localhost --port 4173 --strictPort",
"server:electron": "node server.js",
"prestart": "vite build",
"preelectron": "vite build",
"electron": "concurrently -k \"npm run server:electron\" \"npm run preview:electron\" \"electron .\"",
"start": "concurrently \"vite preview\" \"node server.js\""
},
"dependencies": {
"@mediapipe/camera_utils": "^0.3.1675466862",
"@mediapipe/drawing_utils": "^0.3.1675466124",
"@mediapipe/face_detection": "^0.4.1646425229",
"@mediapipe/hands": "^0.4.1675469240",
"@mediapipe/tasks-vision": "^0.10.32",
"@serialport/parser-readline": "^13.0.0",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"install": "^0.13.0",
"multer": "^2.1.1",
"newsapi": "^2.4.1",
"nodemon": "^3.1.14",
"npm": "^11.11.0",
"pg": "^8.20.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.13.1",
"serialport": "^13.0.0",
"sharp": "^0.34.5",
"sqlite": "^5.1.1",
"sqlite3": "^6.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.2",
"concurrently": "^9.2.1",
"electron": "^41.0.3",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"vite": "^7.3.1"
}
}