forked from dlarroder/dalelarroder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.53 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.53 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "anonimoCafe",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "contentlayer dev & next dev -p 8000",
"build": "contentlayer build && next build",
"postbuild": "npm run rss",
"rss": "cross-env NODE_OPTIONS='--experimental-json-modules' node ./scripts/generate-rss.mjs",
"serve": "next start",
"lint": "next lint --fix --dir pages --dir components --dir lib --dir layouts --dir scripts",
"prepare": "husky install",
"sync:sqlite": "node --env-file=.env.local scripts/sync-supabase-sqlite.mjs"
},
"engines": {
"node": "20.x"
},
"dependencies": {
"@auth/supabase-adapter": "^1.11.1",
"@dlarroder/playground": "1.10.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/mukta": "5.0.18",
"@hookform/resolvers": "^5.2.2",
"@mui/material": "^7.0.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@studio-freight/react-lenis": "0.0.36",
"@supabase/supabase-js": "^2.80.0",
"@vercel/analytics": "1.1.1",
"@vercel/speed-insights": "^1.0.2",
"bcryptjs": "^3.0.2",
"classnames": "2.3.2",
"clsx": "^2.1.1",
"cmdk": "0.2.0",
"contentlayer": "0.3.4",
"contributions": "^0.8.0",
"date-fns": "^3.6.0",
"esbuild": "0.16.12",
"framer-motion": "10.16.4",
"github-slugger": "1.5.0",
"google-auth-library": "^10.6.1",
"gsap": "3.12.2",
"gtag": "^1.0.1",
"html2canvas": "^1.4.1",
"jsonwebtoken": "^9.0.3",
"logrocket": "6.0.2",
"lucide-react": "^0.575.0",
"mdx-bundler": "9.2.1",
"next": "14.2.5",
"next-auth": "^5.0.0-beta.29",
"next-contentlayer": "0.3.4",
"next-themes": "0.2.1",
"nodemailer": "^6.9.15",
"porto": "^0.2.37",
"qrcode.react": "^4.2.0",
"react": "18.2.0",
"react-activity-calendar": "^2.3.5",
"react-day-picker": "^8.10.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.62.0",
"react-icons": "^4.12.0",
"reading-time": "1.5.0",
"rehype-autolink-headings": "7.0.0",
"rehype-prism-plus": "1.6.3",
"rehype-slug": "6.0.0",
"remark": "14.0.3",
"resend": "^4.0.0",
"styled-components": "^6.1.17",
"tailwindcss-animate": "^1.0.7",
"use-breakpoint": "4.0.1",
"zod": "^4.1.8"
},
"devDependencies": {
"@svgr/webpack": "8.1.0",
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/typography": "0.5.10",
"@types/bcryptjs": "^2.4.6",
"@types/github-slugger": "1.3.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "20.8.10",
"@types/nodemailer": "^7.0.4",
"@types/nprogress": "0.2.3",
"@types/react": "18.2.46",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"autoprefixer": "10.4.16",
"cross-env": "7.0.3",
"dedent": "1.5.1",
"eslint": "8.56.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.0.1",
"file-loader": "6.2.0",
"globby": "11.1.0",
"husky": "8.0.3",
"inquirer": "9.1.4",
"lint-staged": "15.0.2",
"postcss": "8.4.31",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.6",
"sqlite3": "^5.1.7",
"tailwind-scrollbar": "3.0.5",
"tailwindcss": "3.3.5",
"typescript": "5.2.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,scss,md}": [
"prettier --write"
]
},
"overrides": {
"@mui/material": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0"
}
}
}