-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.91 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.91 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
{
"name": "admin-main",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"setup-db": "ts-node ./scripts/setup_db.ts"
},
"dependencies": {
"@auth/mongodb-adapter": "^2.0.0",
"@ckeditor/ckeditor5-core": "^40.0.0",
"@ckeditor/ckeditor5-react": "^6.1.0",
"@ckeditor/ckeditor5-upload": "^40.0.0",
"@faker-js/faker": "^8.2.0",
"@hookform/resolvers": "^3.3.1",
"@monaco-editor/react": "^4.6.0",
"@primer/primitives": "^7.15.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@reduxjs/toolkit": "^1.9.6",
"@tanstack/react-table": "^8.10.4",
"axios": "^1.5.1",
"cheerio": "^1.0.0-rc.12",
"chroma-js": "^2.4.2",
"ckeditor5-custom-build": "file:./ckeditor",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"date-fns": "^2.30.0",
"deepmerge": "^4.3.1",
"dompurify": "^3.0.6",
"html-entities": "^2.4.0",
"katex": "^0.16.9",
"lexical": "^0.12.2",
"lodash-es": "^4.17.21",
"monaco-editor": "^0.44.0",
"mongodb": "^6.1.0",
"next": "^14.0.0",
"next-auth": "^4.23.1",
"nodemailer": "^6.9.5",
"prettier": "^3.1.0",
"prismjs": "^1.29.0",
"puff-puff": "^1.2.0",
"react": "latest",
"react-day-picker": "^8.9.1",
"react-dom": "latest",
"react-hook-form": "^7.47.0",
"react-icons": "^4.11.0",
"react-redux": "^8.1.3",
"sass": "^1.68.0",
"socket.io-client": "^4.7.5",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"tinyurl": "^1.1.7",
"use-elapsed-time": "^3.0.4",
"xlsx": "^0.18.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/chroma-js": "^2.4.2",
"@types/html-entities": "^1.3.4",
"@types/katex": "^0.16.3",
"@types/node": "^20.8.9",
"@types/nodemailer": "^6.4.11",
"@types/prismjs": "^1.26.2",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"autoprefixer": "latest",
"eslint": "^8.52.0",
"eslint-config-next": "^14.0.0",
"postcss": "latest",
"tailwindcss": "^3.3.5",
"ts-node": "^10.9.1",
"typescript": "latest"
}
}