-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.01 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.01 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": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier . --check",
"format:write": "prettier . --write",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@ckeditor/ckeditor5-react": "^11.1.2",
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.12.3",
"@codemirror/language-data": "^6.5.2",
"@codemirror/search": "^6.7.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.1",
"@codesandbox/sandpack-react": "^2.20.0",
"@mantine/carousel": "^9.1.0",
"@mantine/code-highlight": "^9.1.0",
"@mantine/core": "^9.1.0",
"@mantine/dates": "^9.1.0",
"@mantine/hooks": "^9.1.0",
"@mantine/notifications": "^9.1.0",
"@monaco-editor/react": "^4.7.0",
"@shikijs/transformers": "^4.0.2",
"@tabler/icons-react": "^3.41.1",
"@tanstack/react-query": "^5.100.5",
"@uiw/codemirror-theme-eclipse": "^4.25.9",
"@uiw/codemirror-theme-monokai": "^4.25.9",
"@uiw/codemirror-themes": "^4.25.9",
"axios": "^1.15.2",
"boring-avatars": "^2.0.4",
"ckeditor5": "^48.0.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"embla-carousel": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"html-react-parser": "^6.0.1",
"js-base64": "^3.7.8",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.3",
"lowlight": "^3.3.0",
"next": "^16.2.4",
"react": "19.2.5",
"react-cookie": "^8.1.0",
"react-dom": "19.2.5",
"react-hook-form": "^7.73.1",
"react-medium-image-zoom": "5.4",
"sharp": "^0.34.5",
"shiki": "^4.0.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/js-cookie": "^3.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-testing-library": "^7.16.2",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"postcss": "^8.5.10",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.8.3",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3"
}
}