-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.23 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
{
"name": "qsl-manager-web",
"version": "2.0.0",
"description": "QSL Card Manager - Web Application (Migrated from Python)",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "node server.js",
"client": "vite",
"build": "vite build",
"preview": "vite preview",
"migrate": "node server/db/migrations.js",
"pm2:start": "pm2 start ecosystem.config.cjs",
"pm2:stop": "pm2 stop qsl-manager",
"pm2:restart": "pm2 restart qsl-manager",
"pm2:delete": "pm2 delete qsl-manager",
"pm2:logs": "pm2 logs qsl-manager",
"pm2:status": "pm2 status"
},
"keywords": ["qsl", "ham-radio", "amateur-radio", "card-manager"],
"author": "BH2VSQ",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"sql.js": "^1.10.3",
"cors": "^2.8.5",
"multer": "^1.4.5-lts.1",
"qrcode": "^1.5.3",
"jspdf": "^2.5.1",
"dayjs": "^1.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"antd": "^5.12.5",
"axios": "^1.6.5",
"zustand": "^4.4.7",
"pm2": "^5.3.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"vite": "^5.0.10",
"concurrently": "^8.2.2"
}
}