-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.63 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
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"seed": "node -r dotenv/config ./scripts/seed.js",
"start": "next start"
},
"dependencies": {
"@ant-design/cssinjs": "^1.21.1",
"@heroicons/react": "^2.0.18",
"@monaco-editor/react": "^4.6.0",
"@ngneat/falso": "^7.2.0",
"@prisma/client": "^5.18.0",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@rjsf/core": "^6.0.0-alpha.0",
"@rjsf/utils": "^5.20.0",
"@rjsf/validator-ajv8": "^6.0.0-alpha.0",
"@shadcn/ui": "^0.0.4",
"@tailwindcss/forms": "^0.5.7",
"@vercel/postgres": "^0.5.0",
"antd": "^5.20.5",
"autoprefixer": "10.4.15",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"highlight.js": "^11.10.0",
"lucide-react": "^0.428.0",
"monaco-editor": "^0.52.2",
"monaco-editor-webpack-plugin": "^7.1.0",
"next": "^14.0.2",
"next-auth": "^5.0.0-beta.4",
"pg": "^8.12.0",
"pg-native": "^3.1.0",
"postcss": "8.4.31",
"primeicons": "^7.0.0",
"primereact": "^10.8.2",
"prism": "^4.1.2",
"prismjs": "^1.29.0",
"react": "18.2.0",
"react-ace": "^12.0.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.52.1",
"react-icons": "^5.3.0",
"react-syntax-highlighter": "^15.6.1",
"react18-json-view": "^0.2.8",
"reactflow": "^11.11.4",
"rsuite": "^5.70.1",
"shiki": "^1.22.0",
"tailwind-merge": "^2.5.4",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "3.3.3",
"use-debounce": "^9.0.4",
"use-onclickoutside": "^0.4.1",
"vscode-languageserver-types": "^3.17.5",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.1",
"@types/highlight.js": "^10.1.0",
"@types/node": "^22.13.1",
"@types/prismjs": "^1.26.4",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.2.14",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"@vercel/style-guide": "^5.0.1",
"css-loader": "^7.1.2",
"dotenv": "^16.3.1",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.24",
"eslint-config-prettier": "9.0.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "0.5.4",
"prisma": "^5.18.0",
"style-loader": "^4.0.0",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.17.0"
}
}