-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 2.33 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
{
"name": "openhud",
"private": true,
"version": "3.0.6",
"type": "module",
"main": "dist-electron/main.js",
"author": {
"name": "JohnTimmermann",
"email": "johnwtimmermann@yahoo.com"
},
"description": "OpenHud - CS2 Admin Panel / HUD",
"repository": "https://github.com/JohnTimmermann/OpenHud",
"scripts": {
"dev": "npm-run-all --parallel dev:react dev:electron",
"dev:react": "vite",
"dev:electron": "npm run transpile:electron && cross-env NODE_ENV=development electron .",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"transpile:electron": "tsc --project src/electron/tsconfig.json",
"dist:mac": "npm run transpile:electron && npm run build && electron-builder --mac --arm64",
"dist:win": "npm run transpile:electron && npm run build && electron-builder --win --x64",
"dist:linux": "npm run transpile:electron && npm run build && electron-builder --linux --x64",
"test:e2e": "playwright test",
"test:unit": "vitest src"
},
"dependencies": {
"@supabase/supabase-js": "^2.47.11",
"axios": "^1.7.9",
"cors": "^2.8.5",
"csgogsi": "^3.0.7",
"express": "^4.21.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"react-router-dom": "^7.0.2",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"sqlite3": "^5.1.7",
"tailwind-merge": "^2.5.5",
"uuid": "^11.0.3"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@playwright/test": "^1.49.1",
"@tailwindcss/forms": "^0.5.9",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@types/sqlite3": "^3.1.11",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.16",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.1",
"vitest": "^2.1.8"
}
}