-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.56 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
51
52
53
54
55
56
57
58
59
60
{
"name": "aggronation",
"version": "0.0.1",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix",
"type-check": "tsc --noEmit",
"test": "tsx --test tests/*.test.ts"
},
"dependencies": {
"@heroui/react": "3.2.4",
"@heroui/styles": "3.2.4",
"@supabase/ssr": "^0.12.6",
"@supabase/supabase-js": "^2.115.0",
"clsx": "2.1.1",
"fast-xml-parser": "^5.11.1",
"intl-messageformat": "10.7.16",
"next": "16.2.6",
"react": "19.2.6",
"react-dom": "19.2.6",
"sanitize-html": "^2.17.7",
"server-only": "^0.0.1",
"zod": "^4.5.4"
},
"devDependencies": {
"@eslint/compat": "1.2.8",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.25.1",
"@next/eslint-plugin-next": "16.2.0",
"@tailwindcss/postcss": "4.1.11",
"@types/node": "20.9.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/sanitize-html": "^2.16.1",
"@typescript-eslint/eslint-plugin": "8.34.1",
"@typescript-eslint/parser": "8.34.1",
"eslint": "9.25.1",
"eslint-config-next": "16.2.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.5.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "16.0.0",
"pg": "^8.23.0",
"postcss": "8.5.6",
"prettier": "3.5.3",
"tailwind-variants": "3.3.0",
"tailwindcss": "4.1.11",
"tsx": "^4.23.13",
"typescript": "5.6.3"
}
}