forked from DnsChanger/dnsChanger-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.05 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
98
99
100
101
{
"name": "dnschanger",
"productName": "dnschanger",
"version": "2.2.0",
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"description": "DNS Changer for Windows, Mac and Linux operating systems",
"main": "dist-electron/main/index.js",
"repository": {
"url": "https://github.com/DnsChanger/dnsChanger-desktop"
},
"scripts": {
"i18n": "typesafe-i18n",
"dev": "vite",
"build:code": "tsc && vite build",
"build": "tsc && vite build && electron-builder",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"preview": "vite preview",
"pree2e": "vite build --mode=test",
"e2e": "playwright test",
"publish:linux": "tsc && vite build && electron-builder --linux -p always",
"publish:win": "tsc && vite build && electron-builder --win -p always",
"publish:auto": "tsc && vite build && electron-builder -p always",
"publish:mac": "tsc && vite build && electron-builder --mac -p always"
},
"keywords": [],
"author": {
"name": "sajjadmrx",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@heroicons/react": "^2.1.1",
"@jest/globals": "^29.7.0",
"@material-tailwind/react": "^2.1.9",
"@types/auto-launch": "^5.0.5",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/ms": "^0.7.34",
"@types/ping": "^0.4.4",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.22",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vercel/webpack-asset-relocator-loader": "^1.7.3",
"@vitejs/plugin-react": "^4.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.10.0",
"daisyui": "^4.7.3",
"electron": "29.1.4",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"node-loader": "^2.0.0",
"node-sass": "^9.0.0",
"postcss": "^8.4.36",
"postcss-loader": "^8.1.1",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"tailwindcss-flip": "^1.0.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "~5.4.2",
"vite": "^5.1.6",
"vite-plugin-electron": "^0.28.4",
"vite-plugin-electron-renderer": "^0.14.5"
},
"dependencies": {
"auto-launch": "^5.0.6",
"autoprefixer": "^10.4.18",
"axios": "^1.6.8",
"dotenv": "^16.4.5",
"electron-log": "^5.1.2",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^8.2.0",
"electron-updater": "^6.1.8",
"electron-windows-badge": "^1.1.0",
"lodash": "^4.17.21",
"ms": "^2.1.3",
"network": "^0.7.0",
"ping": "^0.4.4",
"react": "^18.2.0",
"react-daisyui": "^5.0.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.0.1",
"style-loader": "^3.3.4",
"sudo-prompt": "^9.2.1",
"sweetalert2": "^11.10.6",
"typesafe-i18n": "^5.26.2",
"update-electron-app": "^3.0.0",
"uuid": "^9.0.1"
}
}