-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
69 lines (69 loc) · 1.77 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
{
"name": "bgmi-frontend",
"version": "2.1.2",
"description": "web gui for bgmi",
"author": "Trim21 <[email protected]>",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"format": "prettier -w .",
"server": "vite build && vite preview",
"lint": "eslint --fix --ext .ts,.tsx, ./src/",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"files": [
"dist",
"package.json"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=v18.15.0"
},
"lint-staged": {
"*.{js,cjs,mjs,jsx,ts,tsx,css,less,scss,html,json,yml,yaml}": [
"prettier --ignore-path ./.prettierignore --write "
],
"*.{js,cjs,mjs,jsx,ts,tsx}": [
"eslint --fix "
]
},
"license": "MIT",
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@generouted/react-router": "^1.18.4",
"chakra-react-select": "^4.9.1",
"cookies-next": "^2.1.2",
"dplayer": "^1.27.1",
"framer-motion": "^10.2.5",
"hls.js": "^1.5.3",
"husky": "^8.0.3",
"jotai": "^2.9.3",
"md5": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-icons": "^4.8.0",
"react-router-dom": "^6.9.0",
"swr": "^2.2.5"
},
"devDependencies": {
"@types/dplayer": "^1.25.5",
"@types/md5": "^2.3.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-helmet": "^6.1.11",
"@vitejs/plugin-react-swc": "^3.7.0",
"eslint": "^8.36.0",
"eslint-config-kaho": "^0.9.7",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.8.0",
"lint-staged": "^13.3.0",
"prettier": "^3",
"typescript": "4.9.5",
"vite": "^4.2.1"
}
}