Files
elysium/apps/api/package.json
T
hikari 8d05d06348
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 1m2s
CI / Lint, Build & Test (pull_request) Successful in 1m10s
chore: update minor and patch dependencies
Bumped @hono/node-server, @types/node, @types/react, @types/react-dom,
@vitejs/plugin-react, hono, jsdom, react, react-dom, tsx, and vite.

TypeScript held at 5.8.2 (6.x incompatible with current eslint config),
Vitest held at 3.x (4.x coverage pragma changes need investigation),
Prisma held at 6.x (7.x requires prisma.config.ts migration).
2026-04-06 12:05:33 -07:00

34 lines
935 B
JSON

{
"name": "@elysium/api",
"version": "0.4.0",
"private": true,
"type": "module",
"main": "./prod/src/index.js",
"scripts": {
"build": "prisma generate && tsc -p tsconfig.json",
"db:push": "prisma db push",
"dev": "op run --env-file=./prod.env -- tsx watch src/index.ts",
"lint": "eslint --max-warnings 0 src",
"start": "op run --env-file=./prod.env -- node prod/src/index.js",
"test": "vitest run --coverage"
},
"dependencies": {
"@elysium/types": "workspace:*",
"@hono/node-server": "1.19.12",
"@nhcarrigan/logger": "1.1.1",
"@prisma/client": "6.5.0",
"hono": "4.12.11",
"prisma": "6.5.0"
},
"devDependencies": {
"@nhcarrigan/eslint-config": "5.2.0",
"@nhcarrigan/typescript-config": "4.0.0",
"@types/node": "25.5.2",
"@vitest/coverage-v8": "3.0.8",
"eslint": "9.22.0",
"tsx": "4.21.0",
"typescript": "5.8.2",
"vitest": "3.0.8"
}
}