-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.75 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
85
86
87
88
89
90
91
{
"name": "coucou",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"devHost": "node ./hostServer.ts",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"format": "prettier --write .",
"ts": "tsc --noEmit",
"email": "email dev",
"stripe-webhooks": "stripe listen --forward-to localhost:3000/api/webhooks/stripe",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"postinstall": "prisma generate",
"clean": "next lint --fix && tsc --noEmit && prettier --write ."
},
"dependencies": {
"@auth/prisma-adapter": "2.0.0",
"@dicebear/collection": "^8.0.1",
"@dicebear/core": "^8.0.1",
"@mantine/core": "^7.9.0",
"@mantine/dropzone": "^7.9.2",
"@mantine/form": "^7.9.0",
"@mantine/hooks": "^7.9.0",
"@mantine/notifications": "^7.9.0",
"@prisma/client": "^5.14.0",
"@react-email/components": "0.0.17",
"@react-email/html": "0.0.8",
"@react-email/tailwind": "0.0.16",
"@stripe/react-stripe-js": "^2.7.1",
"@stripe/stripe-js": "^3.4.0",
"@stylexjs/stylex": "^0.6.1",
"@t3-oss/env-nextjs": "^0.10.1",
"@tabler/icons-react": "^3.3.0",
"@tanstack/react-query": "^5.35.5",
"@tsparticles/engine": "^3.4.0",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.4.0",
"cookies": "^0.9.1",
"framer-motion": "^11.1.9",
"jiti": "^1.21.0",
"minio": "^8.0.0",
"moment": "^2.30.1",
"nanoid": "^5.0.7",
"next": "14.2.3",
"next-auth": "5.0.0-beta.11",
"next-nprogress-bar": "^2.3.12",
"next-safe-action": "^6.2.0",
"nuqs": "^1.17.2",
"react": "^18.3.1",
"react-dom": "^18",
"react-use": "^17.5.0",
"resend": "^3.2.0",
"stripe": "^15.6.0",
"tslog": "^4.9.2",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@faker-js/faker": "^8.2.0",
"@tanstack/react-query-devtools": "^5.34.2",
"@types/cookies": "^0.9.0",
"@types/node": "^20.12.11",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"autoprefixer": "^10.4.19",
"clsx": "^2.1.1",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.15.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^5.14.0",
"sass": "^1.77.1",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"unified": "^11.0.4"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}