-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.21 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.21 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
{
"name": "matchmaker-frontend",
"private": true,
"version": "0.6.2",
"type": "module",
"scripts": {
"dev": "tsx server.ts",
"clean": "rm -rf build",
"build": "npm run clean && react-router build && tsc -p tsconfig.node.json --outDir build",
"start": "NODE_ENV=production node build/server.js",
"prod": "NODE_ENV=production pm2-runtime start build/server.js --name matchmaker -i max",
"stop": "pm2 stop matchmaker",
"restart": "pm2 restart matchmaker",
"logs": "pm2 logs matchmaker",
"preview": "NODE_ENV=production tsx server.ts",
"lint": "eslint .",
"postversion": "if [ \"$(git rev-parse --abbrev-ref HEAD)\" = \"main\" ]; then git push --follow-tags origin HEAD; else echo \"Not on main branch, skipping push.\"; fi"
},
"dependencies": {
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-router/express": "^7.13.0",
"@react-router/fs-routes": "^7.13.0",
"@react-router/node": "^7.13.0",
"@react-router/serve": "^7.13.0",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/react-query": "^5.90.21",
"class-variance-authority": "^0.7.1",
"compression": "^1.8.1",
"express": "^5.2.1",
"http-proxy-middleware": "^3.0.5",
"isbot": "^5.1.35",
"lucide-react": "^0.563.0",
"morgan": "^1.10.1",
"pm2": "^6.0.14",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.5.0",
"react-router": "^7.13.0",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@react-router/dev": "^7.13.0",
"@tailwindcss/postcss": "^4.1.17",
"@types/compression": "^1.8.1",
"@types/express": "^5.0.6",
"@types/morgan": "^1.9.10",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.3",
"autoprefixer": "^10.4.24",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.3.0",
"tailwindcss": "^4.1.17",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.36.0",
"vite": "^7.3.2"
},
"overrides": {
"minimatch": "^10.2.1"
}
}