-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "sern-bin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate": "yarn generateMigrations && node --loader ts-node/esm src/db/migrations.mts",
"generateMigrations": "drizzle-kit generate:pg --schema ./src/db/schema.ts"
},
"dependencies": {
"@clerk/nextjs": "^4.29.3",
"@mantine/core": "^7.4.1",
"@mantine/hooks": "^7.4.1",
"@mantine/notifications": "^7.4.1",
"@monaco-editor/react": "^4.6.0",
"@sentry/nextjs": "^7.93.0",
"@uiw/react-md-editor": "3.6.0",
"bottleneck": "^2.19.5",
"clsx": "^2.1.0",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.29.3",
"lru-cache": "^10.1.0",
"next": "14.0.4",
"next-nprogress-bar": "^2.1.2",
"next-remove-imports": "^1.0.12",
"postgres": "^3.4.3",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.0.1",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^4.0.0",
"util-utils": "^1.0.3",
"zod": "^3.22.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "^15.5.11",
"drizzle-kit": "^0.20.12",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"postcss": "^8.4.33",
"postcss-preset-mantine": "^1.12.3",
"postcss-simple-vars": "^7.0.1",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}