-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"$schema": "./.vscode/schemas/package.schema.json",
"name": "dee-blog-admin",
"version": "1.0.0",
"description": "Blog admin panel with backend upload proxy",
"engines": {
"node": "22.x"
},
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "concurrently -k -n client,server -c blue,green \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "vite --port 8000",
"dev:server": "node server.js",
"build": "vite build && node scripts/copy-media-to-dist.mjs",
"preview": "vite preview",
"clean": "rm -rf dist",
"lint": "tsc --noEmit",
"test": "node scripts/smoke-test.mjs"
},
"dependencies": {
"@tailwindcss/vite": "^4.2.2",
"@vercel/blob": "^2.3.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.18.2",
"firebase": "^12.10.0",
"firebase-admin": "^13.7.0",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"multer": "^2.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.13.1",
"recharts": "^3.8.0",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.4.1"
}
}