-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "endoflife-radar",
"description": "An end-of-life radar for your projects using endoflife.date",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"check": "pnpm run typecheck && pnpm run lint && pnpm run test",
"typecheck": "tsc",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"test": "vitest run",
"test:watch": "vitest watch",
"dev": "vite",
"build": "tsc && vite build",
"build:gh-pages": "tsc && vite build --base=/endoflife-radar",
"preview": "vite preview"
},
"dependencies": {
"clsx": "2.1.1",
"fuzzy": "0.1.3",
"i18next": "24.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hotkeys-hook": "4.6.1",
"react-i18next": "15.1.2",
"react-router-dom": "7.0.1",
"swr": "2.2.5",
"tailwind-merge": "2.5.5",
"ts-pattern": "5.5.0",
"zod": "3.23.8",
"zod-validation-error": "3.4.0"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@types/eslint": "9.6.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-router-dom": "5.3.3",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "10.4.20",
"eslint": "9.15.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-tailwindcss": "3.17.5",
"globals": "15.12.0",
"jsdom": "25.0.1",
"postcss": "8.4.49",
"postcss-load-config": "6.0.1",
"tailwindcss": "3.4.15",
"typescript": "5.7.2",
"typescript-eslint": "8.16.0",
"vite": "6.0.1",
"vitest": "2.1.6"
}
}