-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.32 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.32 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "mcc-tools",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build --webpack",
"vercel-build": "next build --webpack",
"check": "eslint . && tsc --noEmit",
"dev": "next dev --webpack",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"preview": "next build --webpack && next start",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@catppuccin/palette": "^1.7.1",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-hover-card": "^1.1.6",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-navigation-menu": "^1.2.5",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-slot": "^1.0.2",
"@t3-oss/env-nextjs": "^0.9.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.5.0",
"html-react-parser": "^5.2.2",
"lucide-react": "^0.454.0",
"next": "16.0.3",
"next-themes": "^0.4.6",
"react": "19.2.0",
"react-dom": "19.2.0",
"sanitize-html": "^2.14.0",
"server-only": "^0.0.1",
"shiki": "^3.1.0",
"superjson": "^2.2.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"ts-pattern": "^5.9.0",
"zod": "^3.24.2",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@catppuccin/tailwindcss": "^0.1.6",
"@eslint/js": "^9.39.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.16",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/eslint": "^8.56.12",
"@types/node": "^20.17.22",
"@types/react": "19.2.5",
"@types/react-dom": "19.2.3",
"@types/sanitize-html": "^2.13.0",
"eslint": "^9.39.1",
"eslint-config-next": "16.0.3",
"postcss": "^8.5.3",
"prettier": "^3.5.2",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.2",
"typescript-eslint": "^8.47.0"
},
"ct3aMetadata": {
"initVersion": "7.30.1"
},
"packageManager": "npm@9.2.0",
"overrides": {
"react": "$react",
"react-dom": "$react-dom",
"@types/react": "19.2.5",
"@types/react-dom": "19.2.3"
}
}