-
Notifications
You must be signed in to change notification settings - Fork 177
/
package.json
96 lines (96 loc) · 3.11 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
{
"name": "shield",
"version": "1.0.11",
"description": "Cyber security shield",
"productName": "UA Cyber SHIELD",
"author": "slamy",
"private": true,
"repository": "github:opengs/uashield",
"scripts": {
"start:dev": "quasar dev -m electron",
"start:electron": "electron ./dist/electron/UnPackaged/electron-main.js",
"build:electron": "quasar build -m electron",
"build:headless": "esbuild ./headless.ts --tsconfig=tsconfig.headless.json --platform=node --bundle --minify --sourcemap --sources-content=false --keep-names --target=node16 --outfile=./build/headless/headless.js",
"start:headless": "NODE_ENV=production node ./build/headless/headless.js",
"lint": "eslint --ext .js,.ts,.vue --ignore-path .dockerignore .",
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"@quasar/extras": "^1.0.0",
"@types/node-fetch": "^2.6.1",
"@types/superagent": "^4.1.15",
"apexcharts": "^3.35.0",
"axios": "^0.26.1",
"axios-https-proxy-fix": "^0.17.1",
"axios-socks5-agent": "^1.0.5",
"cacheable-lookup": "^6.0.4",
"core-js": "^3.21.1",
"dayjs": "^1.11.0",
"electron-google-analytics": "^1.0.2",
"electron-store": "^8.0.1",
"electron-updater": "^4.6.5",
"fs": "^0.0.1-security",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.0",
"is-valid-domain": "^0.1.6",
"is-valid-http-url": "^1.0.3",
"node-localstorage": "^2.2.1",
"node-machine-id": "^1.1.12",
"path": "^0.12.7",
"playwright-core": "^1.20.1",
"quasar": "^2.0.0",
"simple-ddos": "^2.0.4",
"socks-proxy-agent": "^6.2.0-beta.0",
"superagent": "^7.1.2",
"superagent-proxy": "^3.0.0",
"universal-analytics": "^0.5.3",
"user-agents": "^1.0.965",
"uuid4": "^2.0.2",
"valid-url": "^1.0.9",
"vue": "^3.0.0",
"vue-i18n": "^9.0.0",
"vue-router": "^4.0.0",
"vue3-apexcharts": "^1.4.1",
"vuex": "^4.0.1",
"yargs": "^17.4.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@quasar/app": "^3.0.0",
"@types/node": "^16.11.26",
"@types/superagent-proxy": "^3.0.0",
"@types/universal-analytics": "^0.4.5",
"@types/user-agents": "^1.0.2",
"@types/uuid4": "^2.0.0",
"@types/valid-url": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"electron": "^17.1.0",
"electron-builder": "22.14.13",
"electron-packager": "^15.4.0",
"esbuild": "0.14.27",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.0.0",
"node-polyfill-webpack-plugin": "^1.1.4"
},
"browserslist": [
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
],
"engines": {
"node": ">= 12.22.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}