-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 896 Bytes
/
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
{
"name": "rf2-grid",
"productName": "Electron",
"private": true,
"version": "0.0.1",
"description": "rFactor2 launcher",
"author": "gvidasja@gmail.com",
"license": "MIT",
"main": "dist/electron/main/index.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder"
},
"engines": {
"node": ">=14.17.0"
},
"dependencies": {
"classnames": "^2.3.1",
"electron-store": "^8.0.2"
},
"devDependencies": {
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^1.3.2",
"electron": "^19.0.8",
"electron-builder": "^23.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.53.0",
"typescript": "^4.7.4",
"vite": "^2.9.14",
"vite-plugin-electron": "^0.8.0"
},
"env": {
"VITE_DEV_SERVER_HOST": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 7777
}
}