-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 3.41 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
98
99
{
"name": "next-blogger",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:debug": "next build -d",
"build:heap": "next build --experimental-debug-memory-usage",
"build:stats": "ANALYZE=true npm run build",
"clean": "rimraf .next .swc out coverage",
"start:standalone": "node .next/standalone/server.js",
"start": "next start",
"start:mem": "NODE_OPTIONS='--inspect' next start",
"lint": "next lint",
"shadcn:add": "npx shadcn-ui@latest add",
"prettier": "prettier --check --ignore-path .gitignore \"**/*.{js,jsx,ts,tsx}\"",
"prettier:fix": "prettier --write --ignore-path .gitignore \"**/*.{js,jsx,ts,tsx}\"",
"coupling-graph": "npx madge --extensions js,jsx,ts,tsx,css,md,mdx ./ --exclude '.next|tailwind.config.js|reset.d.ts|prettier.config.js|postcss.config.js|playwright.config.ts|next.config.js|README.md|.eslintrc.js' --image graph.svg",
"supabase:push": "npx supabase db push"
},
"dependencies": {
"@hookform/resolvers": "^3.5.0",
"@next/bundle-analyzer": "^14.1.4",
"@next/third-parties": "^14.2.3",
"@notionhq/client": "^2.2.14",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-aspect-ratio": "^1.0.3",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/ssr": "^0.3.0",
"@supabase/supabase-js": "^2.43.4",
"@t3-oss/env-nextjs": "^0.8.0",
"@tanstack/react-table": "^8.13.2",
"@types/katex": "^0.16.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"eslint": "^8.57.0",
"katex": "^0.16.9",
"lucide-react": "^0.312.0",
"next": "^14.2.2",
"next-intl": "^3.11.1",
"next-mdx-remote": "^4.4.1",
"next-themes": "^0.2.1",
"pino": "^8.20.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.5",
"react-pdf": "^7.7.0",
"react-resize-detector": "^10.0.1",
"react-share": "^5.1.0",
"react-wrap-balancer": "^1.1.0",
"sharp": "^0.33.2",
"simplebar-react": "^3.2.4",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"unfurl.js": "^6.4.0",
"zod": "^3.23.8",
"zod-form-data": "^2.0.2"
},
"devDependencies": {
"@neshca/cache-handler": "^1.3.1",
"@next/eslint-plugin-next": "^14.1.0",
"@types/ms": "^0.7.34",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-next": "^14.2.0",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"redis": "^4.6.13",
"shiki": "^1.1.7",
"tailwindcss": "^3.4.3",
"typescript": "^5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}