prisma-repo
Version:
Generating repository pattern using Prisma ORM faster and easier
73 lines (72 loc) • 2.03 kB
JSON
{
"name": "prisma-repo",
"version": "0.3.12",
"description": "Generating repository pattern using Prisma ORM faster and easier",
"main": "dist/index.mjs",
"scripts": {
"start": "node dist/index.mjs",
"build": "tsup src/index.ts --format esm --clean --sourcemap --minify --metafile",
"dev": "tsup src/index.ts --format esm --watch --clean --onSuccess \"node dist/index.mjs\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krsbx/prisma-repo.git"
},
"keywords": [
"typescript",
"prisma",
"repository",
"cli"
],
"types": "index.d.ts",
"exports": "./dist/index.mjs",
"bin": {
"prisma-repo": "./dist/index.mjs"
},
"author": "krsbx",
"license": "MIT",
"bugs": {
"url": "https://github.com/krsbx/prisma-repo/issues"
},
"homepage": "https://github.com/krsbx/prisma-repo#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/app-root-path": "^1.2.4",
"@types/figlet": "^1.5.4",
"@types/fs-extra": "^9.0.13",
"@types/gradient-string": "^1.1.2",
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tsup": "^6.2.2",
"typescript": "^4.7.4"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"app-root-path": "^3.0.0",
"chalk": "^5.0.1",
"commander": "^9.3.0",
"figlet": "^1.5.2",
"fs-extra": "^10.1.0",
"gradient-string": "^2.0.1",
"lodash": "^4.17.21",
"ora": "^6.1.2",
"template-file": "^6.0.1"
}
}