fastify-mikro-orm
Version:
Fastify Mikro-ORM plugin
55 lines (54 loc) • 1.47 kB
JSON
{
"name": "fastify-mikro-orm",
"version": "2.1.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.5",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"fastify": "^3.22.1",
"tap": "^15.0.10",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@mikro-orm/core": "^4.5.9",
"@mikro-orm/mariadb": "^4.5.9",
"@mikro-orm/mongodb": "^4.5.9",
"@mikro-orm/mysql": "^4.5.9",
"@mikro-orm/postgresql": "^4.5.9",
"@mikro-orm/sqlite": "^4.5.9",
"fastify-plugin": "^3.0.0"
}
}