forked from RaminNietzsche/CVE-Radar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 4.2 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 4.2 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "cve-radar",
"version": "1.2.1",
"description": "CVE Radar — multi-source CVE vulnerability monitoring with RTL/LTR UI and six languages",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.19.0 || ^22.13.0 || >=24"
},
"keywords": [
"cve",
"security",
"vulnerability",
"nvd",
"osv",
"cisa-kev",
"react",
"express"
],
"repository": {
"type": "git",
"url": "https://github.com/RaminNietzsche/CVE-Radar.git"
},
"scripts": {
"dev": "concurrently -n server,client -c blue,green \"npm run dev:server\" \"npm run dev:client\"",
"dev:client": "vite",
"dev:server": "tsx watch server/index.ts",
"build": "tsc -b && vite build",
"build:server": "rm -rf dist-server && tsc -p tsconfig.server.json && printf \"import './server/index.js';\\n\" > dist-server/index.js && node -e \"const v=require('./package.json').version; require('fs').writeFileSync('dist-server/server/lib/version.json', JSON.stringify({version:v}))\" && mkdir -p dist-server/server/openapi dist-server/server/db/migrations && cp server/openapi/spec.json dist-server/server/openapi/spec.json && cp server/db/migrations/*.sql dist-server/server/db/migrations/",
"preview": "vite preview",
"start": "NODE_ENV=production node dist-server/index.js",
"check:openapi": "bash scripts/check-openapi-sync.sh",
"lint": "eslint .",
"typecheck": "tsc -b --noEmit && tsc -p tsconfig.server.json --noEmit",
"test": "TSX_TSCONFIG_PATH=tsconfig.app.json node --import tsx --test tests/**/*.test.ts",
"test:ci": "mkdir -p coverage && TSX_TSCONFIG_PATH=tsconfig.app.json node --import tsx --experimental-test-coverage --test --test-reporter=spec --test-reporter=junit --test-reporter=lcov --test-reporter-destination=stdout --test-reporter-destination=junit.xml --test-reporter-destination=coverage/lcov.info tests/**/*.test.ts",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install chromium",
"verify:junit": "node --import tsx scripts/verify-junit-report.ts",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\" \"server/**/*.ts\" \"shared/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\" \"server/**/*.ts\" \"shared/**/*.ts\" \"tests/**/*.ts\"",
"docs:screenshots": "node scripts/capture-docs-screenshots.mjs",
"docs:product-demo": "node scripts/capture-product-demo.mjs",
"docs:screenshots:placeholders": "bash scripts/generate-docs-ui-placeholders.sh",
"icons:download": "bash scripts/download-brand-icons.sh",
"icons:sync": "bash scripts/sync-brand-icons.sh",
"icons:check": "bash scripts/check-brand-icons-sync.sh",
"agent:sync": "bash scripts/sync-agent-rules-skills.sh",
"agent:install": "bash scripts/sync-agent-rules-skills.sh --to-cursor",
"dockerhub:update": "bash scripts/update-dockerhub-repo.sh",
"dockerhub:prune": "bash scripts/prune-dockerhub-tags.sh"
},
"dependencies": {
"@kubernetes/client-node": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"express": "^5.2.1",
"express-rate-limit": "^7.5.1",
"helmet": "^8.2.0",
"jalaali-js": "^1.2.8",
"lucide-react": "^1.17.0",
"nodemailer": "^8.0.10",
"pg": "^8.21.0",
"prom-client": "^15.1.3",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"redis": "^4.7.1"
},
"devDependencies": {
"@codecov/vite-plugin": "^2.0.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4.3.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.6",
"@types/nodemailer": "^8.0.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^7.2.0",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.4.20",
"concurrently": "^10.0.3",
"eslint": "^10.4.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"playwright": "^1.52.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"supertest": "^7.0.0",
"tailwindcss": "^4.3.0",
"tsx": "^4.19.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.18.2",
"vite": "^8.0.16"
}
}