-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.58 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "african-dawn-launcher",
"author": {
"email": "support@africandawn.ru",
"name": "African Dawn",
"url": "https://africandawn.ru"
},
"description": "Installer African Dawn, Hearts of Iron IV mod",
"version": "1.0.1",
"private": true,
"devDependencies": {
"@types/electron": "^1.6.10",
"@types/node": "^18.11.10",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^10.4.13",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"electron": "^22.0.0",
"electron-builder": "^23.6.0",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"react-scripts": "^5.0.1",
"rimraf": "^3.0.2",
"tailwindcss": "3.2.4",
"tailwindcss-no-scrollbar": "^1.0.1",
"taze": "^0.8.4",
"typescript": "^4.9.3",
"wait-on": "^6.0.1"
},
"dependencies": {
"@electron/remote": "^2.0.8",
"adm-zip": "^0.5.14",
"auto-launch": "^5.0.5",
"axios": "^1.7.2",
"build": "^0.1.4",
"discord-rpc": "^4.0.1",
"electron-is-dev": "^2.0.0",
"electron-reloader": "^1.2.3",
"electron-updater": "^5.3.0",
"i18next": "^23.12.2",
"i18next-browser-languagedetector": "^8.0.0",
"node-fetch": "^3.3.2",
"node-reg": "^0.2.4",
"pixel-retroui": "^1.0.66",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^15.0.0",
"react-icons": "^4.7.1",
"react-router-dom": "^6.4.4",
"react-toastify": "^9.1.1",
"react-use": "^17.4.0",
"steam-user": "^5.0.10",
"steamworks.js": "^0.3.2",
"tailwind-scrollbar-hide": "^1.1.7",
"winreg": "1.2.4"
},
"homepage": "./",
"main": "public/electron.js",
"scripts": {
"dev": "concurrently \"npm run react:dev\" \"npm run electron:wait\"",
"electron:wait": "wait-on tcp:3000 && npm run electron:dev",
"prebuild": "rimraf build && rimraf dist",
"react:build": "react-scripts build",
"react:dev": "cross-env BROWSER=none react-scripts start",
"electron:build": "electron-builder build --win --publish never",
"electron:deploy": "electron-builder build --win --publish always",
"electron:dev": "electron .",
"build": "npm run react:build && npm run electron:build",
"deploy": "npm run react:build && npm run electron:deploy",
"format": "prettier --write .",
"update": "taze latest -w"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"build": {
"appId": "ru.africandawn.launcher",
"productName": "African Dawn Launcher",
"icon": "public/logo.png"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}