-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.82 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
{
"name": "v41-bears-team-32",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"netlify-build": "prisma generate && prisma migrate deploy && prisma db seed && next build",
"start-dev": "docker run --name zavy -e POSTGRES_PASSWORD=password -p 5432:5432 -d --rm postgres && prisma migrate dev && prisma db seed && next dev"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@hookform/resolvers": "^2.9.10",
"@mantine/core": "^5.8.2",
"@mantine/dropzone": "^5.8.2",
"@mantine/hooks": "^5.8.2",
"@mantine/modals": "^5.8.2",
"@mantine/next": "^5.8.2",
"@mantine/nprogress": "^5.8.2",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.6.1",
"@tabler/icons": "^1.112.0",
"@tanstack/react-query": "^4.16.1",
"@trpc/client": "10.0.0-rc.8",
"@trpc/next": "10.0.0-rc.8",
"@trpc/react-query": "10.0.0-rc.8",
"@trpc/server": "10.0.0-rc.8",
"argon2": "^0.30.2",
"cloudinary": "^1.32.0",
"cookies": "^0.8.0",
"next": "13.0.4",
"next-auth": "^4.17.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-easy-crop": "^4.6.2",
"react-hook-form": "^7.39.4",
"sharp": "^0.31.2",
"stripe": "^11.1.0",
"ts-node": "^10.9.1",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/cookies": "^0.7.7",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"autoprefixer": "^10.4.13",
"eslint": "8.28.0",
"eslint-config-next": "13.0.4",
"postcss": "^8.4.19",
"prettier": "2.7.1",
"prisma": "^4.6.1",
"tailwindcss": "^3.2.4",
"tsx": "^3.12.1",
"typescript": "4.9.3"
}
}