-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.74 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
{
"name": "english-word-roots",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@8.15.5",
"scripts": {
"dev": "next dev -p 3001",
"dev:turbo": "next dev --turbo",
"dev:clean": "rm -rf .next && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@mdx-js/mdx": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@remixicon/react": "^4.7.0",
"@serwist/next": "^9.5.7",
"@supabase/ssr": "^0.9.0",
"@supabase/supabase-js": "^2.98.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"jiti": "^2.6.1",
"motion": "^12.34.3",
"next": "^14.1.4",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@tailwindcss/postcss": "^4.1.14",
"@types/node": "^20.12.7",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.16",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.14.0",
"postcss": "^8.5.6",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"serwist": "^9.5.7",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "^5.4.3"
}
}