Files
elysium/apps/api/package.json
T
naomi b604a4aa5c
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 1m7s
CI / Lint, Build & Test (push) Successful in 1m8s
release: v0.1.1
2026-03-08 20:23:22 -07:00

33 lines
897 B
JSON

{
"name": "@elysium/api",
"version": "0.1.1",
"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.13.7",
"@prisma/client": "6.5.0",
"hono": "4.7.4",
"prisma": "6.5.0"
},
"devDependencies": {
"@nhcarrigan/eslint-config": "5.2.0",
"@nhcarrigan/typescript-config": "4.0.0",
"@types/node": "25.3.5",
"@vitest/coverage-v8": "3.0.8",
"eslint": "9.22.0",
"tsx": "4.19.3",
"typescript": "5.8.2",
"vitest": "3.0.8"
}
}