-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.11 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.11 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
100
{
"name": "api-monitor",
"version": "0.1.5",
"description": "Multi-api monitoring dashboard",
"main": "server.js",
"scripts": {
"start": "cross-env DOTENV_CONFIG_QUIET=1 node server.js",
"dev:server": "cross-env DOTENV_CONFIG_QUIET=1 nodemon server.js",
"dev:client": "cross-env DOTENV_CONFIG_QUIET=1 vite",
"dev": "cross-env DOTENV_CONFIG_QUIET=1 concurrently --names \"SERVER,VITE\" --prefix-colors \"cyan,yellow\" \"npm run dev:server\" \"npm run dev:client\"",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{js,css,html}\" \"modules/**/*.js\" \"server.js\" \"*.config.js\"",
"format:check": "prettier --check \"src/**/*.{js,css,html}\" \"modules/**/*.js\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@alicloud/pop-core": "^1.8.0",
"@neteasecloudmusicapienhanced/api": "^4.29.20",
"@unblockneteasemusic/server": "^0.28.0",
"axios": "^1.13.2",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.5.0",
"chalk": "^4.1.2",
"chart.js": "^4.5.1",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-fileupload": "^1.5.0",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"https-proxy-agent": "^7.0.6",
"jsqr": "^1.4.0",
"katex": "^0.16.21",
"lru-cache": "^11.2.4",
"mermaid": "^11.12.2",
"multer": "^2.0.2",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.12",
"otplib": "^12.0.1",
"pinia": "^3.0.4",
"qrcode": "^1.5.4",
"simple-icons-font": "^16.4.0",
"socket.io": "^4.7.2",
"socket.io-client": "^4.8.3",
"speakeasy": "^2.0.0",
"ssh2": "^1.17.0",
"tencentcloud-sdk-nodejs": "^4.1.165",
"uuid": "^13.0.0",
"ws": "^8.18.3",
"zod": "^4.2.1"
},
"devDependencies": {
"@applemusic-like-lyrics/core": "^0.2.0",
"@applemusic-like-lyrics/lyric": "^0.3.0",
"@eslint/js": "^9.39.2",
"@fortawesome/fontawesome-free": "^7.1.0",
"@pixi/app": "^7.4.2",
"@pixi/core": "^7.4.2",
"@pixi/display": "^7.4.2",
"@pixi/filter-blur": "^7.4.2",
"@pixi/filter-color-matrix": "^7.4.2",
"@pixi/sprite": "^7.4.2",
"@pixi/ticker": "^7.4.2",
"@ungap/structured-clone": "^1.3.0",
"@vitest/coverage-v8": "^4.0.16",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"artplayer": "^5.3.0",
"bezier-easing": "^2.1.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"deep-freeze": "^0.0.1",
"dompurify": "^3.3.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"flv.js": "^1.6.2",
"gl-matrix": "^4.0.0-beta.2",
"hls.js": "^1.6.15",
"marked": "^17.0.1",
"nodemon": "^3.0.1",
"pixi-filters": "^5.3.0",
"plyr": "^3.8.3",
"prettier": "^3.7.4",
"rollup-plugin-visualizer": "^6.0.5",
"vite": "^7.3.0",
"vite-plugin-html": "^3.2.2",
"vitest": "^4.0.16",
"vue": "^3.5.26"
},
"overrides": {
"pino": "6.14.0"
}
}