-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.03 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.03 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
{
"name": "registry-radar",
"version": "0.1.0-beta.8",
"description": "Docker container registry monitoring application",
"main": "dist/server/index.js",
"scripts": {
"build": "npm run build:client && npm run build:server",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "tsx watch src/server/index.ts",
"dev:client": "vite",
"start": "node dist/server/index.js",
"preview": "vite preview",
"lint": "eslint src --ext .ts,.tsx",
"type-check": "tsc --noEmit"
},
"keywords": ["docker", "registry", "monitoring", "typescript", "react"],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"sqlite3": "^5.1.6",
"node-cron": "^3.0.3",
"axios": "^1.6.2",
"ws": "^8.18.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.1",
"lucide-react": "^0.294.0",
"clsx": "^2.0.0",
"tailwind-merge": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"cookie-parser": "^1.4.6",
"bcryptjs": "^2.4.3",
"nodemailer": "^6.9.7"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/node": "^24.0.0",
"@types/node-cron": "^3.0.11",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/jsonwebtoken": "^9.0.5",
"@types/cookie-parser": "^1.4.6",
"@types/bcryptjs": "^2.4.6",
"@types/nodemailer": "^6.4.14",
"@types/sqlite3": "^3.1.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.1.1",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"tsx": "^4.6.0",
"typescript": "^5.2.2",
"vite": "^5.4.0",
"@types/ws": "^8.5.10"
}
}