forked from codu-code/codu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.9 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
101
{
"name": "codu",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"ci-build": "prisma generate && prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint",
"test:e2e": "playwright test",
"studio": "prisma studio",
"migrate": "npx prisma migrate"
},
"prisma": {
"seed": "npx tsx ./prisma/seed.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.410.0",
"@aws-sdk/client-ses": "^3.410.0",
"@aws-sdk/s3-request-presigner": "^3.410.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^1.0.6",
"@hookform/resolvers": "^2.9.11",
"@js-temporal/polyfill": "^0.4.4",
"@markdoc/markdoc": "^0.3.2",
"@next-auth/prisma-adapter": "^1.0.7",
"@next/bundle-analyzer": "^12.3.4",
"@prisma/client": "^4.16.2",
"@resvg/resvg-js": "^2.4.1",
"@sentry/nextjs": "^7.69.0",
"@styled-icons/material": "^10.47.0",
"@tailwindcss/forms": "^0.5.6",
"@tanem/react-nprogress": "^5.0.48",
"@tanstack/react-query": "^4.35.0",
"@trpc/client": "^10.38.2",
"@trpc/next": "^10.38.2",
"@trpc/react-query": "^10.38.2",
"@trpc/server": "^10.38.2",
"@udecode/plate": "^20.7.2",
"atropos": "^1.0.2",
"clsx": "^1.2.1",
"copy-to-clipboard": "^3.3.3",
"dompurify": "^3.0.5",
"fathom-client": "^3.5.0",
"html-react-parser": "^3.0.16",
"nanoid": "^4.0.2",
"next": "^13.4.19",
"next-auth": "^4.23.1",
"next-superjson-plugin": "^0.5.9",
"nodemailer": "^6.9.4",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"react-hot-toast": "^2.4.1",
"react-hotkeys-hook": "^4.4.1",
"react-intersection-observer": "^9.5.2",
"react-textarea-autosize": "^8.5.3",
"satori": "^0.10.3",
"sharp": "^0.32.5",
"slate-react": "^0.98.2",
"slate-serializers": "^0.4.1",
"styled-components": "^5.3.11",
"superjson": "^1.13.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@playwright/test": "^1.35.1",
"@svgr/webpack": "^6.5.1",
"@tailwindcss/typography": "^0.5.9",
"@types/chance": "^1.1.3",
"@types/dompurify": "^3.0.2",
"@types/markdown-it": "^12.2.3",
"@types/node": "^17.0.33",
"@types/nodemailer": "^6.4.8",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"autoprefixer": "^10.4.14",
"chance": "^1.1.11",
"eslint": "^8.15.0",
"eslint-config-next": "^13.4.19",
"gray-matter": "^4.0.3",
"postcss": "^8.4.25",
"prisma": "^4.16.2",
"tailwindcss": "^3.3.2",
"typescript": "^5.2.2"
},
"volta": {
"node": "18.17.1",
"npm": "9.6.7"
},
"overrides": {
"json5@<1.0.2": "1.0.2",
"json5@>=2.0.0 <2.2.2": "2.2.2"
}
}