-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.68 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.68 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
{
"dependencies": {
"@clerk/clerk-react": "^5.21.0",
"@fastify/cors": "^11.1.0",
"@fastify/websocket": "^11.2.0",
"bcrypt": "^5.1.1",
"chart.js": "^4.4.7",
"chartjs-plugin-zoom": "^2.2.0",
"cookie-parser": "^1.4.7",
"express": "^4.21.2",
"fastify": "^5.6.2",
"jotai": "^2.15.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^7.1.1",
"ws": "^8.18.0"
},
"scripts": {
"start": "node server/server.js",
"start:fastify": "node server/fastify-server.js",
"dev": "concurrently \"node server/fastify-server.js\" \"vite\"",
"debug": "concurrently \"node --inspect --trace-gc server/fastify-server.js\" \"vite\"",
"dev:express": "concurrently \"node server/server.js\" \"vite\"",
"build": "vite build",
"deploy": "npm run build && scp -r dist package.json index.html root@realheartremote.live:/var/www/realheartremote.live/ && ssh root@realheartremote.live \"cd /var/www/realheartremote.live && npm install && pm2 restart all\"",
"preview": "vite preview",
"build:css": "tailwindcss -i ./src/input.css -o ./public/styles.css --minify",
"watch:css": "tailwindcss -i ./src/input.css -o ./public/styles.css --watch"
},
"name": "srhmonitor",
"version": "1.0.0",
"main": "server.js",
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"daisyui": "^4.12.23",
"pino-pretty": "^13.1.2",
"postcss": "^8.4.31",
"tailwindcss": "^3.4.16",
"terser": "^5.37.0",
"vite": "^5.0.12"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"optionalDependencies": {
"bufferutil": "^4.0.9"
}
}