typegraphql-prisma-nestjs
Version:
This project is a fork of another with minor changes, created for personal use.
110 lines (109 loc) • 3.27 kB
JSON
{
"name": "typegraphql-prisma-nestjs",
"version": "0.2800.017",
"scripts": {
"build": "tsc",
"package:build": "./package.sh",
"package:publish": "cd package *&& npm publish",
"check:type": "tsc --noEmit --skipLibCheck",
"check:experiments:postgres": "cd ./experiments/postgres && tsc --noEmit --skipLibCheck",
"check:experiments:mongodb": "cd ./experiments/mongodb && tsc --noEmit --skipLibCheck",
"check:format": "prettier --ignore-path ./.cli.prettierignore --check ./**/*.{js,json,ts,tsx}",
"test": "ts-node ./tests/helpers/setup-tests.ts && jest --watch --verbose",
"test:integration": "ts-node ./tests/helpers/setup-tests.ts && env-cmd jest --watch --verbose --config ./jest.config.integration.ts",
"test:ci": "ts-node ./tests/helpers/setup-tests.ts && jest --coverage --verbose --runInBand && jest --coverage --verbose --runInBand --config ./jest.config.integration.ts",
"format": "prettier --ignore-path ./.cli.prettierignore --write ./**/*.{js,json,ts,tsx}"
},
"bin": {
"typegraphql-prisma-nestjs": "lib/generator.js"
},
"peerDependencies": {
"@prisma/client": "*",
"@types/graphql-fields": "*",
"@types/node": "*",
"graphql-fields": "*",
"graphql-scalars": "*",
"prisma": "*",
"tslib": "*"
},
"dependencies": {
"@antfu/ni": "0.22.0",
"@opentelemetry/api": "1.9.0",
"@prisma/generator-helper": "^6.10.1",
"@prisma/internals": "^6.10.1",
"dotenv": "16.4.5",
"fp-ts": "2.16.9",
"fs-jetpack": "5.1.0",
"http-proxy-agent": "7.0.2",
"https-proxy-agent": "7.0.5",
"pluralize": "^8.0.0",
"semver": "^7.6.3",
"ts-morph": "^23.0.0",
"tslib": "*"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@prisma/client": "^5.18.0",
"@types/graphql-fields": "^1.3.9",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@types/pg": "^8.11.6",
"@types/pluralize": "0.0.33",
"@types/semver": "^7.5.8",
"@types/validator": "^13.12.0",
"@types/yargs-parser": "^21.0.3",
"directory-tree": "^3.5.2",
"env-cmd": "^10.1.0",
"graphql": "^16.9.0",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.23.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.8",
"pg": "^8.12.0",
"prettier": "^3.3.3",
"prettier-2": "npm:prettier@^2",
"prisma": "^5.18.0",
"reflect-metadata": "0.1.13",
"ts-jest": "~29.2.4",
"ts-node": "^10.9.2",
"ts-toolbelt": "^9.6.0",
"tslib": "^2.6.3",
"type-graphql": "2.0.0-rc.2",
"typescript": "~5.5.4"
},
"license": "MIT",
"engines": {
"node": ">=20.11.1"
},
"author": {
"name": "Michał Lytek",
"url": "https://github.com/MichalLytek"
},
"repository": {
"type": "git",
"url": "https://github.com/EndyKaufman/typegraphql-prisma-nestjs.git"
},
"bugs": {
"url": "https://github.com/EndyKaufman/typegraphql-prisma-nestjs/issues"
},
"keywords": [
"nestjs",
"type-graphql",
"typegraphql",
"prisma",
"prisma2",
"prisma-framework",
"graphql",
"generator"
],
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write"
],
"**/*.{js,json}": [
"prettier --write"
]
},
"private": false
}