-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.03 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.03 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
{
"name": "mjs-front",
"private": true,
"version": "1.0.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"format": "prettier --write .",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@blocknote/core": "^0.35.0",
"@blocknote/mantine": "^0.35.0",
"@blocknote/react": "^0.35.0",
"@tailwindcss/vite": "^4.1.10",
"@tanstack/react-query": "^5.81.5",
"@types/dompurify": "^3.0.5",
"agentation": "^1.3.2",
"axios": "^1.10.0",
"browser-image-compression": "^2.0.2",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.2.6",
"heic2any": "^0.0.4",
"jsdom": "^26.1.0",
"pretendard": "^1.3.9",
"react": "^19.1.0",
"react-date-range": "^2.0.1",
"react-dom": "^19.1.0",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-mobile-picker": "^1.2.0",
"react-quick-pinch-zoom": "^5.1.1",
"react-router-dom": "^7.6.2",
"react-textarea-autosize": "^8.5.9",
"swiper": "^12.0.3",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.10",
"vaul": "^1.1.2",
"zustand": "^5.0.5"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/node": "^24.5.2",
"@types/react": "^19.1.2",
"@types/react-date-range": "^1.4.10",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"husky": "^8.0.0",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-sitemap": "^0.8.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": [
"prettier --write",
"eslint --fix"
]
}
}