-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 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
{
"name": "downloader",
"version": "3.0.0",
"private": true,
"packageManager": "pnpm@10.29.1",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "pnpm run test:unit && pnpm run test:e2e",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:e2e": "pnpm build && playwright test",
"test:e2e:headed": "pnpm build && playwright test --headed",
"test:browsers": "playwright install --with-deps chromium"
},
"dependencies": {
"@ffmpeg/core": "^0.12.10",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@fontsource/jetbrains-mono": "^5.2.8",
"@linear/sdk": "^82.0.0",
"fflate": "^0.8.2",
"lucide-react": "^1.8.0",
"next": "^16.2.3",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25.6.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^16.2.3",
"tailwindcss": "^4.2.2",
"typescript": "^5",
"vitest": "^4.1.4"
}
}