/
IvanRyabchenko
/
random-coffee-backend
Обзор
Документация
Войти
/
IvanRyabchenko
/
random-coffee-backend
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
package.json
37 строк
978 B
Ivan Ryabchenko
chore(deps): move tsx to dependencies for production seed execution
18 май 2026, 12:47
18 май 2026, 12:47
e8dafcd
Код
Авторство
О чём код?
{ "name": "random-coffee-backend", "version": "1.0.0", "description": "Random Coffee REST API — Hono + TypeScript + Prisma + PostgreSQL", "main": "dist/index.js", "scripts": { "dev": "tsx watch src/index.ts", "build": "tsc", "start": "node dist/index.js", "db:generate": "prisma generate", "db:migrate": "prisma migrate dev", "db:push": "prisma db push", "db:seed": "tsx prisma/seed.ts", "lint": "tsc --noEmit" }, "prisma": { "seed": "node_modules/.bin/tsx prisma/seed.ts" }, "dependencies": { "@hono/node-server": "^1.13.7", "@hono/swagger-ui": "^0.4.1", "@hono/zod-openapi": "^0.18.4", "@prisma/client": "^6.8.1", "bcryptjs": "^2.4.3", "dotenv": "^16.5.0", "hono": "^4.7.10", "jose": "^5.10.0", "tsx": "^4.19.4", "zod": "^3.24.4" }, "devDependencies": { "@types/bcryptjs": "^2.4.6", "@types/node": "^22.15.18", "prisma": "^6.8.1", "typescript": "^5.8.3" } }