This repository was archived by the owner on Feb 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.27 KB
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
{
"private": true,
"sideEffects": false,
"prisma": {
"seed": "node --require esbuild-register prisma/cv.ts"
},
"scripts": {
"build": "remix build",
"deploy": "fly deploy --remote-only",
"dev": "remix dev",
"start": "remix-serve build",
"typecheck": "tsc",
"format": "prettier \"app/**/*.ts\" \"app/**/*.tsx\" --write . "
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@headlessui/react": "^1.7.13",
"@mantine/carousel": "^5.10.2",
"@mantine/core": "^5.10.5",
"@mantine/dates": "^5.10.2",
"@mantine/form": "^5.10.2",
"@mantine/hooks": "^5.10.5",
"@mantine/modals": "^5.10.2",
"@mantine/remix": "^5.10.2",
"@mantine/tiptap": "^5.10.2",
"@markdoc/markdoc": "^0.2.2",
"@prisma/client": "^4.13.0",
"@radix-ui/react-aspect-ratio": "^1.0.1",
"@radix-ui/react-dropdown-menu": "^2.0.2",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-navigation-menu": "^1.1.2",
"@radix-ui/react-separator": "^1.0.2",
"@radix-ui/react-toolbar": "^1.0.1",
"@react-pdf/renderer": "^3.1.6",
"@remix-run/node": "^1.15.0",
"@remix-run/react": "^1.15.0",
"@remix-run/serve": "^1.15.0",
"@tabler/icons-react": "^2.16.0",
"@tailwindcss/container-queries": "^0.1.0",
"@tiptap/extension-color": "^2.0.0-beta.220",
"@tiptap/extension-highlight": "^2.0.0-beta.220",
"@tiptap/extension-image": "^2.0.0-beta.220",
"@tiptap/extension-link": "^2.0.0-beta.209",
"@tiptap/extension-subscript": "^2.0.0-beta.220",
"@tiptap/extension-superscript": "^2.0.0-beta.220",
"@tiptap/extension-text-align": "^2.0.0-beta.220",
"@tiptap/extension-text-style": "^2.0.0-beta.220",
"@tiptap/extension-underline": "^2.0.0-beta.220",
"@tiptap/html": "^2.0.0-beta.218",
"@tiptap/react": "^2.0.0-beta.209",
"@tiptap/starter-kit": "^2.0.0-beta.209",
"@vercel/analytics": "^0.1.11",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.35.0",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"dayjs": "^1.11.7",
"esbuild": "^0.16.14",
"esbuild-register": "^3.4.2",
"framer-motion": "^8.0.2",
"isbot": "^3.6.5",
"mdx-bundler": "^9.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-json-tree": "^0.18.0",
"remix": "^1.10.0",
"remix-auth": "^3.4.0",
"remix-auth-discord": "^1.2.0",
"remix-auth-form": "^1.3.0",
"remix-auth-google": "^1.2.0",
"remix-auth-socials": "^1.0.2",
"remix-utils": "^5.1.0",
"tiny-invariant": "^1.3.1",
"vercel": "^29.1.1",
"web-vitals": "^3.3.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@remix-run/dev": "^1.15.0",
"@remix-run/eslint-config": "^1.15.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.8",
"@types/bcryptjs": "^2.4.2",
"@types/chroma-js": "^2.1.4",
"@types/date-fns": "^2.6.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"eslint": "^8.27.0",
"postcss": "^8.4.20",
"prettier": "^2.8.6",
"prettier-plugin-tailwindcss": "^0.2.5",
"prisma": "^4.13.0",
"tailwindcss": "^3.3.0",
"tsx": "^3.12.2",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14"
}
}