Files
forge/package.json
T
Dmytro Tkachenko 993a141ead feat(insights): full-width category items with more space
Inside "Alert categories" and "Watch list", the category cards are now a
full-width single-column stack instead of a narrow multi-column grid, with
more breathing room (larger gap, roomier headers + ticket rows, taller
expanded list). Each card was already a click-to-expand accordion and
remains so — CSS-only, index.tsx unchanged. The section-level collapse from
2.3.1 still works (.grid[hidden] preserved).

- Insights.module.scss: .grid grid -> flex column (gap 16); cardHead
  padding 16/20; cardTitle 14px; row padding 8/20; list max-height 440
- bump 2.3.1 -> 2.3.2 (root + client), CHANGELOG [2.3.2]
- engineer artifact + INDEX; verifier-log PASS entry

verifier PASS: reproduced tsc + vite build + npm test 9/9; confirmed
flex-column + .grid[hidden] collapse in compiled CSS; no row-grid
regression; no new dependency.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01VEsaHQx8cXr1hFrKU42UK6
2026-08-29 12:24:52 +03:00

42 lines
1.4 KiB
JSON

{
"name": "forge",
"version": "2.3.2",
"description": "FORGE 2.0 — ServiceNow ticket analytics portal (RITM/SCTASK) with roles, PM insights, and a Chrome sync extension",
"main": "dist/index.js",
"private": true,
"scripts": {
"start": "node dist/index.js",
"build": "tsc && cp -r server/data dist/server/data && cd client && npm ci && npm run build",
"dev": "concurrently -n server,client -c blue,green \"tsx index.ts\" \"cd client && npm run dev\"",
"dev:server": "tsx index.ts",
"dev:client": "cd client && npm run dev",
"deploy": "./scripts/push-to-nas.sh",
"reseed": "tsx server/reseed.ts",
"dump-to-archives": "node scripts/dump-to-archives.mjs",
"test": "cd client && npm test && cd .. && npm run test:root",
"test:root": "vitest run -c vitest.config.ts",
"lint": "eslint . --max-warnings 0"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"connect-pg-simple": "^10.0.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^8.3.2",
"express-session": "^1.19.0",
"pg": "^8.12.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/connect-pg-simple": "^7.0.3",
"@types/express": "^5.0.6",
"@types/express-session": "^1.19.0",
"@types/node": "^25.6.0",
"@types/pg": "^8.20.0",
"concurrently": "^9.2.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^2.1.9"
}
}