hestia/package.json
2024-12-05 13:50:55 -05:00

35 lines
816 B
JSON

{
"name": "hestia",
"module": "src/index.ts",
"type": "module",
"scripts": {
"build": "bun build ./src/index.ts --outdir ./build",
"clean": "rm -rf ./build",
"dev": "bun --watch src/index.ts | pino-pretty",
"format": "prettier . --write",
"lint": "",
"prisma:generate": "prisma generate"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/bun": "latest",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "3.4.1",
"prisma": "^6.0.1",
"typescript-eslint": "^8.17.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@pothos/core": "^4.3.0",
"@pothos/plugin-prisma": "^4.4.0",
"@prisma/client": "6.0.1",
"graphql": "^16.9.0",
"graphql-yoga": "^5.10.4",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"zod": "^3.23.8"
}
}