UNPKG

prisma-eventify

Version:

Prisma-Eventify is a crucial module designed to facilitate seamless communication between the ORM (Prisma) and the HTTP server (GraphQL | Rest) by employing event-driven development principles.

55 lines (54 loc) 1.38 kB
{ "name": "prisma-eventify", "description": "", "author": "LorenzoRottigni <lorenzo@rottigni.net>", "repository": "git@github.com:LorenzoRottigni/prisma-eventify.git", "homepage": "https://github.com/LorenzoRottigni/prisma-eventify", "version": "0.0.6-alpha", "license": "MIT", "main": "dist/src/index.js", "types": "src/index.d.ts", "bin": { "prisma-eventify": "dist/src/cli.js" }, "files": [ "dist", "src" ], "keywords": [ "eventify", "event-bus", "prisma", "prisma-generator", "code-generation", "edd" ], "bugs": { "email": "lorenzo@rottigni.tech", "url": "https://github.com/LorenzoRottigni/prisma-eventify/issues" }, "scripts": { "prisma:generate": "prisma generate", "prisma:migrate": "prisma migrate", "type-check": "tsc", "build": "swc src --out-dir dist --extensions '.ts'", "test": "jest tests", "lint": "eslint --ext .ts \"src/**/*.ts\"", "lint:fix": "npm run lint -- --fix" }, "dependencies": { "@prisma/client": "^5.10.2", "@prisma/generator-helper": "^5.10.2", "@prisma/internals": "^5.10.2", "prisma": "^5.10.2", "ts-bus": "^2.3.1", "typescript": "^5.4.2" }, "devDependencies": { "@swc/cli": "^0.3.10", "@swc/core": "^1.4.6", "@swc/jest": "^0.2.36", "@types/jest": "^29.5.12", "jest": "^29.7.0" } }