mirror of
https://github.com/aditama-labs/nest-autocrud.git
synced 2024-11-21 19:06:21 +00:00
95 lines
2.9 KiB
JSON
95 lines
2.9 KiB
JSON
{
|
|
"name": "@aditama-labs/nest-autocrud",
|
|
"version": "0.2.0",
|
|
"description": "NestJS Auto CRUD Library",
|
|
"author": "Supan Adit Pratama",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/aditama-labs/nest-autocrud"
|
|
},
|
|
"homepage": "https://autocrud.nest.docs.supanadit.com",
|
|
"bugs": "https://github.com/aditama-labs/nest-autocrud/issues",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"build:lib:skeleton": "tsc -p libs/skeleton/tsconfig.lib.json",
|
|
"build:lib:prisma": "tsc -p libs/prisma/tsconfig.lib.json",
|
|
"build:libs": "tsc -p libs/tsconfig.lib.json",
|
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"libs/**/*.ts\"",
|
|
"release": "release-it",
|
|
"start": "nest start",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --watch",
|
|
"start:prod": "node dist/main",
|
|
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:cov": "jest --coverage",
|
|
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
|
"test:e2e": "jest --config ./test/jest-e2e.json"
|
|
},
|
|
"dependencies": {
|
|
"@nestjs/common": "^10.0.0",
|
|
"@nestjs/core": "^10.0.0",
|
|
"@nestjs/platform-express": "^10.0.0",
|
|
"@prisma/client": "^5.21.1",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.1",
|
|
"esm": "^3.2.25",
|
|
"reflect-metadata": "^0.2.0",
|
|
"rxjs": "^7.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^10.0.0",
|
|
"@nestjs/schematics": "^10.0.0",
|
|
"@nestjs/testing": "^10.0.0",
|
|
"@types/express": "^5.0.0",
|
|
"@types/jest": "^29.5.2",
|
|
"@types/node": "^20.3.1",
|
|
"@types/supertest": "^6.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
"@typescript-eslint/parser": "^8.0.0",
|
|
"eslint": "^9.0.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"jest": "^29.5.0",
|
|
"prettier": "^3.0.0",
|
|
"prisma": "^5.21.1",
|
|
"release-it": "^17.10.0",
|
|
"source-map-support": "^0.5.21",
|
|
"supertest": "^7.0.0",
|
|
"ts-jest": "^29.1.0",
|
|
"ts-loader": "^9.4.3",
|
|
"ts-node": "^10.9.1",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript": "^5.1.3"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"ts"
|
|
],
|
|
"rootDir": ".",
|
|
"testRegex": ".*\\.spec\\.ts$",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"collectCoverageFrom": [
|
|
"**/*.(t|j)s"
|
|
],
|
|
"coverageDirectory": "./coverage",
|
|
"testEnvironment": "node",
|
|
"roots": [
|
|
"<rootDir>/src/",
|
|
"<rootDir>/libs/"
|
|
],
|
|
"moduleNameMapper": {
|
|
"^@aditama-labs/nest-autocrud/skeleton(|/.*)$": "<rootDir>/libs/skeleton/$1",
|
|
"^@aditama-labs/nest-autocrud/prisma(|/.*)$": "<rootDir>/libs/prisma/$1"
|
|
}
|
|
}
|
|
} |