-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.36 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
{
"name": "vod-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "cross-env BUILD_MODE=standalone next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"commit": "git-cz",
"export:dev": "cross-env BUILD_MODE=export BUILD_APP=1 next dev",
"export": "cross-env BUILD_MODE=export BUILD_APP=1 next build"
},
"dependencies": {
"@ant-design/icons": "^5.6.0",
"@ant-design/nextjs-registry": "^1.0.2",
"@tauri-apps/plugin-http": "~2.3.0",
"@tauri-apps/plugin-updater": "~2",
"ahooks": "^3.8.4",
"antd": "^5.23.3",
"axios": "^1.7.9",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13",
"hls.js": "^1.5.20",
"lodash": "^4.17.21",
"next": "15.1.6",
"query-string": "^9.1.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"sass": "^1.83.4",
"store2": "^2.14.4",
"valtio": "^2.1.3",
"xgplayer": "^3.1.0-alpha.8",
"xgplayer-flv": "^3.0.20",
"xgplayer-hls": "^3.0.20",
"xgplayer-mp4": "^3.0.20",
"zustand": "^5.0.3"
},
"devDependencies": {
"@ant-design/v5-patch-for-react-19": "^1.0.3",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@tauri-apps/cli": "^2.2.7",
"@types/crypto-js": "^4.2.2",
"@types/lodash": "^4.17.15",
"@types/node": "^22",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"commitizen": "^4.3.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.49.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"typescript": "^5",
"webpack": "^5.97.1"
},
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}