-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 KB
/
package.json
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
{
"name": "ygtang-desktop",
"version": "0.0.2",
"main": "dist-electron/main/index.js",
"description": "Ygtang at desktop",
"author": "hyesungoh <[email protected]>",
"license": "MIT",
"private": true,
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"preview": "vite preview",
"lint": "eslint .",
"pree2e": "vite build --mode=test",
"test:e2e": "playwright test"
},
"dependencies": {
"electron-updater": "^5.3.0",
"menubar": "^9.3.0"
},
"devDependencies": {
"@hyesungoh/eslint-plugin": "^1.0.1",
"@types/menubar": "^6.0.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"electron": "^23.1.1",
"electron-builder": "^23.6.0",
"eslint": "^8.36.0",
"prettier": "^2.8.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-electron-plugin": "^0.8.2",
"vite-plugin-electron": "^0.11.1",
"vite-plugin-electron-renderer": "^0.12.1"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
}
}