-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.11 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
{
"name": "admin-dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@codemirror/lang-sql": "^6.6.2",
"@codemirror/state": "^6.4.1",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@headlessui/react": "^1.7.18",
"@material/tooltip": "^14.0.0",
"@mui/material": "^5.15.14",
"@prisma/client": "^5.11.0",
"@types/bcrypt": "^5.0.2",
"@types/lodash": "^4.17.0",
"@typescript-eslint/parser": "^7.6.0",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"chart.js": "^4.4.2",
"codemirror": "^6.0.1",
"cookie": "^0.6.0",
"cors": "^2.8.5",
"dompurify": "^3.0.11",
"draft-js": "^0.11.7",
"draft-js-export-html": "^1.4.1",
"eslint-plugin-unused-imports": "^3.1.0",
"inversify": "^6.0.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"mermaid": "^10.9.0",
"next": "14.1.3",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-confirm-alert": "^3.0.6",
"react-dom": "^18",
"react-draft-wysiwyg": "^1.15.0",
"react-hook-form": "^7.51.2",
"react-icons": "^5.0.1",
"react-select": "^5.8.0",
"react-toastify": "^10.0.5",
"reflect-metadata": "^0.2.2",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"ws": "^8.16.0"
},
"devDependencies": {
"@heroicons/react": "^1.0.6",
"@types/cookie": "^0.6.0",
"@types/dompurify": "^3.0.5",
"@types/draft-js": "^0.11.18",
"@types/inversify": "^2.0.33",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-draft-wysiwyg": "^1.13.8",
"@types/ws": "^8.5.10",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.3",
"postcss": "^8",
"prisma": "^5.11.0",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}