-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 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
{
"name": "fetchtiumv2",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:next\" \"npm run dev:python\"",
"dev:next": "next dev",
"dev:python": "python -m api",
"python": "python -m api",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run"
},
"dependencies": {
"ffmpeg-static": "^5.3.0",
"hls.js": "^1.6.15",
"lucide-react": "^0.562.0",
"@tailwindcss/postcss": "^4",
"typescript": "^5",
"@types/node": "^20",
"next": "16.1.6",
"node-html-parser": "^7.0.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"undici": "^7.18.2",
"validator": "^13.15.26",
"xss": "^1.0.15"
},
"devDependencies": {
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.0",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"vitest": "^3.2.4"
},
"overrides": {
"eslint-config-next": {
"minimatch": "^10.2.2"
}
}
}