forked from codu-code/codu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
146 lines (146 loc) · 4.58 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "codu",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"ci-build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"test:e2e": "playwright test",
"test:jest": "jest --collectCoverage",
"studio": "prisma studio",
"migrate": "npx prisma migrate",
"prettier": "prettier --write -c '**/*.{ts,tsx,js,jsx,json,json5,scss,css,html,mdx}'",
"prepare": "husky install"
},
"prisma": {
"seed": "npx tsx ./prisma/seed.ts"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"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",
"@radix-ui/react-popover": "^1.0.6",
"@resvg/resvg-js": "^2.4.1",
"@sentry/nextjs": "^7.73.0",
"@styled-icons/material": "^10.47.0",
"@tailwindcss/forms": "^0.5.6",
"@tanem/react-nprogress": "^5.0.49",
"@tanstack/react-query": "^4.35.0",
"@tiptap/extension-color": "^2.1.6",
"@tiptap/extension-highlight": "^2.1.6",
"@tiptap/extension-image": "^2.1.11",
"@tiptap/extension-link": "^2.1.6",
"@tiptap/extension-placeholder": "^2.1.6",
"@tiptap/extension-subscript": "^2.1.11",
"@tiptap/extension-superscript": "^2.1.11",
"@tiptap/extension-table": "^2.1.11",
"@tiptap/extension-table-cell": "^2.1.11",
"@tiptap/extension-table-header": "^2.1.11",
"@tiptap/extension-table-row": "^2.1.11",
"@tiptap/extension-task-item": "^2.1.6",
"@tiptap/extension-task-list": "^2.1.6",
"@tiptap/extension-text-align": "^2.1.11",
"@tiptap/extension-text-style": "^2.1.6",
"@tiptap/extension-underline": "^2.1.11",
"@tiptap/extension-youtube": "^2.1.11",
"@tiptap/pm": "^2.1.6",
"@tiptap/react": "^2.1.6",
"@tiptap/starter-kit": "^2.1.6",
"@tiptap/suggestion": "^2.1.6",
"@trpc/client": "^10.38.2",
"@trpc/next": "^10.38.2",
"@trpc/react-query": "^10.38.2",
"@trpc/server": "^10.38.2",
"atropos": "^1.0.2",
"clsx": "^1.2.1",
"copy-to-clipboard": "^3.3.3",
"dompurify": "^3.0.5",
"fathom-client": "^3.5.0",
"framer-motion": "^10.16.1",
"lucide-react": "^0.268.0",
"nanoid": "^4.0.2",
"next": "^13.4.19",
"next-auth": "^4.23.1",
"next-superjson-plugin": "^0.5.9",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.4",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.1",
"react-hot-toast": "^2.4.1",
"react-hotkeys-hook": "^4.4.1",
"react-intersection-observer": "^9.5.2",
"react-moveable": "^0.54.1",
"react-textarea-autosize": "^8.5.3",
"satori": "^0.10.4",
"sharp": "^0.32.6",
"sonner": "^0.6.2",
"styled-components": "^5.3.11",
"superjson": "^1.13.1",
"tailwind-merge": "^1.14.0",
"tiptap-markdown": "^0.8.2",
"use-debounce": "^9.0.4",
"zod": "^3.21.4"
},
"devDependencies": {
"@playwright/test": "^1.35.1",
"@svgr/webpack": "^6.5.1",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/chance": "^1.1.3",
"@types/dompurify": "^3.0.2",
"@types/jest": "^29.5.5",
"@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",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-testing-library": "^6.0.2",
"gray-matter": "^4.0.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"postcss": "^8.4.25",
"prettier": "^3.0.3",
"prisma": "^4.16.2",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.1",
"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"
}
}