forked from kesavan272006/ChronOs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.09 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.09 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
{
"name": "elix",
"version": "1.0.0",
"description": "my first electron app",
"author": "",
"license": "ISC",
"type": "module",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently \"npm run dev --prefix renderer\" \"wait-on http://localhost:5173 && electron .\"",
"build": "npm run build --prefix renderer",
"package": "electron-packager . Elix --platform=win32 --arch=x64 --out=dist-electron --overwrite",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"concurrently": "^8.2.2",
"electron": "^36.4.0",
"electron-packager": "^17.1.1",
"sass-embedded": "^1.89.1",
"wait-on": "^7.0.1"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.1.1",
"@mui/material": "^7.1.1",
"@picovoice/porcupine-node": "^3.0.6",
"@picovoice/pvrecorder-node": "^1.2.8",
"axios": "^1.11.0",
"firebase": "^11.10.0",
"framer-motion": "^12.16.0",
"material": "^0.9.23",
"react-router-dom": "^7.6.2",
"ui": "^0.2.4"
}
}