Files
exchange/package.json
Ruslan Bakiev aff1c63b44
Some checks are pending
Build Docker Image / build (push) Waiting to run
Use Fastify Mercurius and GraphQL contracts
2026-06-01 00:25:27 +05:00

29 lines
657 B
JSON

{
"name": "exchange",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "prisma generate && tsc",
"start": "prisma migrate deploy && node dist/index.js"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@sentry/node": "^10.55.0",
"fastify": "^5.8.5",
"graphql": "^16.14.0",
"mercurius": "^16.9.0",
"pg": "^8.21.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/pg": "^8.20.0",
"prisma": "^7.8.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3"
}
}