-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
100 lines (100 loc) · 3.05 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
92
93
94
95
96
97
98
99
100
{
"name": "peoplez",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "AGPL-3.0-only",
"scripts": {
"build": "next build",
"db:migrate": "prisma migrate dev --create-only",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:docker": "npm run db:push && npm run seed",
"dev": "next dev",
"dev:email": "npx dotenv-run-script dev:email-noenv",
"dev:email-noenv": "email dev --dir src/emails",
"postinstall": "prisma generate",
"lint": "next lint",
"lint:prisma": "prisma validate",
"lint:prisma:fix": "prisma format",
"lint:fix": "next lint --fix && prisma format",
"test": "jest",
"test:watch": "jest --watch",
"start": "next start",
"ragequit": "rm -rf .next && npm run db:push && npm run dev",
"seed": "prisma db seed"
},
"prisma": {
"seed": "tsx prisma/seeds/index.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^1.4.0",
"@hookform/resolvers": "^3.3.4",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.1.4",
"@prisma/client": "^5.10.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@react-email/components": "0.0.16",
"@stripe/react-stripe-js": "^2.6.2",
"@stripe/stripe-js": "^3.2.0",
"@t3-oss/env-nextjs": "^0.9.2",
"@tanstack/react-table": "^8.15.3",
"@types/mdx": "^2.0.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lodash": "^4.17.21",
"next": "^14.2.0",
"next-auth": "^4.24.6",
"nodemailer": "^6.9.13",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-email": "2.1.1",
"react-hook-form": "^7.51.2",
"stripe": "14.23.0",
"tailwind-merge": "^2.2.2",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/eslint": "^8.56.2",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.x",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-extended": "^4.0.0-beta1",
"postcss": "^8.4.34",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"prisma": "^5.10.2",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.2.5",
"tsx": "^4.7.2",
"typescript": "^5.4.2"
},
"ct3aMetadata": {
"initVersion": "7.30.0"
},
"packageManager": "[email protected]"
}