-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.59 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
{
"name": "f1tv-rss",
"version": "1.0.0",
"description": "RSS feed for F1 TV",
"main": "index.js",
"repository": "https://github.com/ipanasenko/f1tv-rss",
"author": "Illia Panasenko <hottdogg2008@gmail.com>",
"license": "MIT",
"packageManager": "bun@1.3.13",
"engines": {
"node": "24.x"
},
"scripts": {
"postinstall": "if [ -z \"$VERCEL\" ]; then lefthook install; fi",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "node --experimental-strip-types --test app/api/rss/route.test.mjs",
"test:coverage": "node --experimental-strip-types --experimental-test-coverage --test-coverage-include=app/api/rss/route.ts --test-coverage-lines=100 --test-coverage-functions=100 --test-coverage-branches=100 --test app/api/rss/route.test.mjs"
},
"dependencies": {
"@hugeicons/core-free-icons": "^4.2.3",
"@hugeicons/react": "^1.1.9",
"@radix-ui/react-slot": "^1.3.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"feed": "^6.0.0",
"next": "16.2.12",
"posthog-js": "^1.409.5",
"posthog-node": "^5.47.3",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/react": "^19.2.18",
"@vercel/node": "^5.9.3",
"autoprefixer": "^10.5.4",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.12",
"lefthook": "^2.1.10",
"postcss": "^8.5.25",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3"
}
}