-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.62 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
78
79
80
81
82
{
"name": "cytooxien-wiki",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run mock-server\" \"vite\"",
"build": "node copy-articles.js && tsc && vite build",
"build:vercel": "node copy-articles.js && vite build",
"postbuild": "node copy-articles.js",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"setup-db": "tsx src/server/setup.ts",
"server": "tsx src/server/index.ts",
"mock-server": "node src/simple-server-noauth.mjs"
},
"dependencies": {
"@mantine/core": "^7.7.0",
"@mantine/hooks": "^7.7.0",
"@tanstack/react-query": "^5.25.0",
"@tiptap/extension-color": "^2.11.5",
"@tiptap/extension-image": "^2.11.5",
"@tiptap/extension-link": "^2.11.5",
"@tiptap/extension-table": "^2.11.5",
"@tiptap/extension-table-cell": "^2.11.5",
"@tiptap/extension-table-header": "^2.11.5",
"@tiptap/extension-table-row": "^2.11.5",
"@tiptap/extension-text-align": "^2.11.5",
"@tiptap/extension-text-style": "^2.11.5",
"@tiptap/extension-underline": "^2.11.5",
"@tiptap/pm": "^2.11.5",
"@tiptap/react": "^2.11.5",
"@tiptap/starter-kit": "^2.11.5",
"@types/react-syntax-highlighter": "^15.5.13",
"axios": "^1.6.7",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.0",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"date-fns": "^3.3.1",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.344.0",
"mysql2": "^3.9.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-markdown": "^9.1.0",
"react-quill": "^2.0.0",
"react-router-dom": "^6.22.3",
"react-syntax-highlighter": "^15.6.1",
"tailwind-merge": "^2.2.1",
"tsx": "^4.7.1",
"uuid": "^11.1.0",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.18",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"postcss": "^8.4.35",
"rollup-plugin-visualizer": "^5.14.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.2"
}
}