-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
97 lines (97 loc) · 2.94 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
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
{
"name": "rockylinux.org-next",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,md}'",
"lint": "next lint",
"lint:ci": "eslint . > eslint-output.txt || true",
"prepare": "husky && playwright install",
"start": "next start",
"e2e": "playwright test",
"e2e:dev": "playwright test --ui",
"e2e:install": "playwright install",
"test": "jest --watch",
"test:ci": "jest --json --outputFile=jest-output.json 2>&1 | tee jest-output.txt",
"test:coverage": "jest --coverage",
"test:nowatch": "jest --watchAll=false"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^3.10.0",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-hover-card": "^1.1.5",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-navigation-menu": "^1.2.4",
"@radix-ui/react-popover": "^1.1.5",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.7",
"@tanstack/react-table": "^8.20.6",
"@types/node": "^22.13.0",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"deepmerge": "^4.3.1",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"gray-matter": "^4.0.3",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"lucide-react": "^0.474.0",
"next": "15.1.6",
"next-intl": "^3.26.3",
"next-plausible": "^3.12.4",
"next-themes": "^0.4.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"rss": "^1.2.2",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.7.3",
"unified": "^11.0.5",
"vaul": "^1.1.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@playwright/test": "^1.50.1",
"@swc/jest": "^0.2.37",
"@tailwindcss/postcss": "^4.0.0",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/match-sorter-utils": "^8.19.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.15",
"@types/rss": "^0.0.32",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"lint-staged": "^15.4.3",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"tailwindcss": "^4.0.0"
},
"overrides": {
"glob": "^10"
}
}