-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
84 lines (84 loc) · 2.58 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
{
"name": "lp-website",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "npx prisma generate && next build",
"start": "next start",
"next:lint": "next lint",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write ."
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@prisma/client": "^5.22.0",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/themes": "^3.1.6",
"@react-email/components": "0.0.23",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.47.10",
"@tanstack/react-table": "^8.20.6",
"@uiw/codemirror-theme-tokyo-night": "^4.23.7",
"@uiw/react-codemirror": "^4.23.7",
"@uiw/react-textarea-code-editor": "^3.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"form-data": "^4.0.1",
"fs": "0.0.1-security",
"json-2-csv": "^5.5.7",
"lucide-react": "^0.428.0",
"mailgun.js": "^10.3.0",
"marked": "^15.0.6",
"next": "14.2.10",
"next-themes": "^0.3.0",
"path": "^0.12.7",
"pocketbase": "^0.21.5",
"postgres": "^3.4.5",
"react": "^18.3.1",
"react-countup": "^6.5.3",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"react-json-editor-ajrm": "^2.5.14",
"react-markdown": "^9.0.1",
"react-resizable-panels": "^2.1.7",
"react-router-dom": "^6.28.1",
"recharts": "^2.15.0",
"remark-gfm": "^4.0.0",
"sonner": "^1.7.1",
"swiper": "^11.1.15",
"swr": "^2.3.0",
"tailwind-merge": "^2.6.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^20.17.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.49",
"prettier": "3.3.3",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
}
}