-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
48 lines (48 loc) · 1.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
{
"name": "video-course-starter-kit",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npx prisma generate && next dev",
"build": "npx prisma generate && npx prisma db push && next build",
"start": "next start",
"lint": "next lint",
"db:proxy": "pscale connect video-course-starter-kit main --port 3309"
},
"dependencies": {
"@mux/blurhash": "^0.1.2",
"@mux/mux-node": "^8.0.0",
"@mux/mux-player-react": "^2.3.2",
"@mux/mux-uploader-react": "^1.0.0-beta.15",
"@next-auth/prisma-adapter": "^1.0.7",
"@planetscale/database": "^1.15.0",
"@prisma/client": "5.9.1",
"@sindresorhus/slugify": "^2.2.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@tanstack/react-query": "^5.18.1",
"clsx": "^2.1.0",
"lodash.get": "^4.4.2",
"next": "14.1.0",
"next-auth": "^4.24.5",
"prisma": "^5.9.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.50.1",
"react-hot-toast": "^2.4.1",
"react-markdown": "^9.0.1",
"react-textarea-autosize": "^8.5.3"
},
"devDependencies": {
"@types/lodash.get": "^4.4.9",
"@types/node": "18.19.14",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"autoprefixer": "^10.4.17",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "5.3.3"
}
}