-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3 KB
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
{
"name": "lada",
"version": "0.0.27",
"description": "LADA - League of Legends Assistant Desktop App",
"main": "./out/main/index.js",
"license": "MIT",
"author": {
"email": "2skydev@gmail.com",
"name": "2skydev"
},
"contributors": [
{
"email": "webd200@gmail.com",
"name": "jong-hui"
}
],
"scripts": {
"dev": "electron-vite dev -w",
"build": "yarn typecheck && electron-vite build && electron-builder",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "yarn typecheck:node && yarn typecheck:web",
"postinstall": "electron-builder install-app-deps",
"format": "prettier --write .",
"g": "node generator.mjs"
},
"dependencies": {
"@nestjs/common": "^10.1.3",
"@nestjs/core": "^10.1.3",
"@sentry/electron": "^4.8.0",
"auto-launch": "^5.0.5",
"axios": "^1.2.3",
"change-case": "^4.1.2",
"cheerio": "^1.0.0-rc.12",
"electron-log": "^4.4.8",
"electron-overlay-window": "^3.3.0",
"electron-store": "^8.1.0",
"electron-updater": "^5.3.0",
"i18next": "^23.5.1",
"jsonc-parser": "^3.2.0",
"league-connect": "^6.0.0-rc10",
"lodash": "^4.17.21",
"p-retry": "4.6.1",
"path-to-regexp": "^6.2.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"semver": "^7.5.1",
"tcp-port-used": "^1.0.2",
"ts-pattern": "^4.3.0"
},
"devDependencies": {
"@sentry/react": "^7.58.1",
"@sentry/vite-plugin": "^2.4.0",
"@swc/core": "^1.3.51",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/auto-launch": "^5.0.2",
"@types/lodash": "^4.14.191",
"@types/node": "^20.1.2",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-virtualized": "^9.21.21",
"@types/styled-components": "^5.1.26",
"@types/tcp-port-used": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vitejs/plugin-react": "^4.0.0",
"antd": "^5.7.3",
"clsx": "^1.2.1",
"dayjs": "^1.11.7",
"electron": "^24.2.0",
"electron-builder": "^23.6.0",
"electron-vite": "^1.0.21",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"fast-deep-equal": "^3.1.3",
"framer-motion": "^9.1.6",
"hangul-util": "^0.1.0",
"inquirer": "^9.1.4",
"inquirer-autocomplete-prompt": "^3.0.0",
"jotai": "^2.2.2",
"polished": "^4.2.2",
"prettier": "^2.8.3",
"qs": "^6.11.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.2",
"react-i18next": "^13.2.2",
"react-router-dom": "^6.6.2",
"react-virtualized": "git+https://git@github.com/remorses/react-virtualized-fixed-import.git#9.22.3",
"recharts": "^2.4.3",
"styled-components": "^5.3.6",
"swr": "^2.0.0",
"typescript": "^5.0.4",
"vite": "^4.0.4"
}
}