-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
166 lines (166 loc) · 5.68 KB
/
Copy pathpackage.json
File metadata and controls
166 lines (166 loc) · 5.68 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "nextjs-math-course",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"author": {
"name": "Maciej Twaróg",
"url": "https://github.com/maciekt07"
},
"homepage": "https://nextjs-math-course.vercel.app/",
"repository": {
"type": "git",
"url": "git+https://github.com/maciekt07/nextjs-math-course.git"
},
"scripts": {
"dev": "next dev",
"docker:dev": "docker compose --env-file .env.development up -d",
"docker:down": "docker compose down",
"ngrok": "ngrok http 3000",
"build": "next build",
"start": "next start",
"preview": "pnpm build && pnpm start",
"email:dev": "email dev -d email/templates --port 3333",
"email:export": "email export -d email/templates --outDir email-out",
"test": "pnpm test:unit && pnpm test:int && pnpm test:e2e",
"test:unit": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts --exclude tests/int",
"test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts tests/int",
"test:e2e": "cross-env NODE_OPTIONS=\"--no-deprecation --import=tsx/esm\" playwright test --config=playwright.config.ts",
"test:typecheck": "tsc --noEmit",
"lint": "biome check",
"lint:fix": "biome check --write",
"lint:fix-unsafe": "biome check --write --unsafe",
"format": "biome format --write",
"knip": "cross-env SKIP_ENV_VALIDATION=1 NODE_OPTIONS=\"--import tsx\" knip",
"db:generate": "dotenv -e .env.development drizzle-kit generate",
"db:push": "dotenv -e .env.development drizzle-kit push",
"db:migrate": "dotenv -e .env.production drizzle-kit migrate",
"db:studio": "dotenv -e .env.development drizzle-kit studio",
"cms:gen-types": "payload generate:types",
"cms:gen-map": "payload generate:importmap",
"stripe:webhook": "stripe listen --forward-to localhost:3000/api/stripe/webhook",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@icons-pack/react-simple-icons": "^13.13.0",
"@mux/blurup": "^1.0.2",
"@mux/mux-node": "^12.8.1",
"@mux/mux-player-react": "^3.11.6",
"@next/third-parties": "^16.2.10",
"@oversightstudio/mux-video": "^1.4.0",
"@payloadcms/db-mongodb": "^3.86.0",
"@payloadcms/email-resend": "^3.86.0",
"@payloadcms/next": "^3.86.0",
"@payloadcms/plugin-import-export": "^3.86.0",
"@payloadcms/plugin-mcp": "3.86.0",
"@payloadcms/richtext-lexical": "^3.86.0",
"@payloadcms/storage-s3": "^3.86.0",
"@payloadcms/ui": "^3.86.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/components": "^1.0.10",
"@react-email/render": "^2.0.4",
"@sindresorhus/slugify": "^3.0.0",
"@t3-oss/env-nextjs": "^0.13.11",
"@tailwindcss/typography": "^0.5.19",
"@uiw/react-md-editor": "^4.1.1",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"@vercel/functions": "^3.7.5",
"@vercel/speed-insights": "^2.0.0",
"babel-plugin-react-compiler": "^1.0.0",
"better-auth": "^1.5.6",
"better-auth-harmony": "^1.3.1",
"bowser": "^2.14.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"graphql": "^16.13.2",
"jiti": "^2.6.1",
"jsdom": "^29.1.1",
"katex": "^0.16.42",
"lucide-react": "^1.25.0",
"mdast": "^3.0.0",
"mdast-util-directive": "^3.1.0",
"mdast-util-to-hast": "^13.2.1",
"mermaid": "^11.16.0",
"motion": "^12.42.2",
"next": "16.2.10",
"next-themes": "^0.4.6",
"nextjs-toploader": "^3.9.17",
"node-vibrant": "^4.0.4",
"payload": "^3.86.0",
"pg": "^8.20.0",
"plaiceholder": "^3.0.0",
"radix-ui": "^1.4.3",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-email": "^6.5.0",
"react-hook-form": "^7.72.0",
"react-markdown": "^10.1.0",
"react-medium-image-zoom": "^5.4.1",
"rehype-katex": "^7.0.1",
"rehype-unwrap-images": "^1.0.0",
"remark-directive": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-rehype": "^11.1.2",
"resend": "^6.9.4",
"sanitize-html": "^2.17.2",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"stripe": "^20.4.1",
"tailwind-merge": "^3.5.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"web-haptics": "^0.0.6",
"zod": "^3.25.76",
"zustand": "^5.0.14"
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@commitlint/types": "^21.0.1",
"@playwright/test": "^1.61.1",
"@react-email/ui": "6.5.0",
"@tailwindcss/postcss": "^4",
"@types/gtag.js": "^0.0.20",
"@types/jsdom": "^28.0.3",
"@types/mdast": "^4.0.4",
"@types/node": "^25",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/sanitize-html": "^2.16.1",
"@vitejs/plugin-react": "^6.0.1",
"cross-env": "^10.1.0",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.31.10",
"husky": "^9.1.7",
"knip": "^6.27.0",
"lint-staged": "^16.4.0",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@10.29.3",
"engines": {
"node": "24.x"
}
}