fastify-mikro-orm
Version:
Fastify Mikro-ORM plugin
55 lines (54 loc) • 1.47 kB
JSON
{
"name": "fastify-mikro-orm",
"version": "4.0.0",
"description": "Fastify Mikro-ORM plugin",
"main": "build/index.js",
"typings": "build/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"postgres": "docker run -p 5432:5432 -e POSTGRES_PASSWORD=masterkey postgres:13",
"test": "tap --ts"
},
"files": [
"build/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/serdnam/fastify-mikro-orm.git"
},
"keywords": [
"fastify",
"mikro-orm",
"database"
],
"author": "Andrés Mármol - @serdnam",
"license": "MIT",
"bugs": {
"url": "https://github.com/serdnam/fastify-mikro-orm/issues"
},
"homepage": "https://github.com/serdnam/fastify-mikro-orm#readme",
"devDependencies": {
"@types/tap": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"fastify": "^4.5.3",
"tap": "^16.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"dependencies": {
"@mikro-orm/core": "^5.4.0",
"@mikro-orm/mariadb": "^5.4.0",
"@mikro-orm/mongodb": "^5.4.0",
"@mikro-orm/mysql": "^5.4.0",
"@mikro-orm/postgresql": "^5.4.0",
"@mikro-orm/sqlite": "^5.4.0",
"fastify-plugin": "^4.2.1"
}
}