-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.83 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"vercel-build": "npx prisma generate && next build",
"prisma:generate": "npx prisma generate",
"postinstall": "npx prisma generate"
},
"prisma": {
"schema": "./src/core/db/schema.prisma"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/lang-markdown": "^6.2.0",
"@codemirror/lang-python": "^6.1.3",
"@codemirror/language-data": "^6.3.1",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.1.1",
"@radix-ui/themes": "^1.1.2",
"@tanstack/react-query-devtools": "^4.32.6",
"@trpc/client": "^10.37.1",
"@trpc/react-query": "^10.37.1",
"@trpc/server": "^10.37.1",
"@types/node": "20.4.7",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"@uiw/codemirror-themes-all": "^4.21.13",
"@uiw/react-codemirror": "^4.21.13",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"eslint": "8.46.0",
"eslint-config-next": "13.4.12",
"framer-motion": "^10.16.4",
"fuse.js": "^6.6.2",
"glitch-text": "^1.6.1",
"next": "13.4.12",
"next-auth": "^4.23.0",
"postcss": "8.4.27",
"react": "18.2.0",
"react-code-blocks": "^0.1.4",
"react-dom": "18.2.0",
"react-markdown": "^8.0.7",
"react-minimal-pie-chart": "^8.4.0",
"react-query": "^3.39.3",
"react-remark": "^2.1.0",
"react-spinners": "^0.13.8",
"redis": "^4.6.7",
"rehype-highlight": "^6.0.0",
"remark-gfm": "^3.0.1",
"split-pane-react": "^0.1.3",
"superjson": "^1.13.1",
"swr": "^2.2.2",
"tailwindcss": "3.3.3",
"typescript": "5.1.6"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9"
}
}