nest-autocrud/package.json

93 lines
2.8 KiB
JSON
Raw Permalink Normal View History

2024-10-26 08:35:59 +00:00
{
2024-10-28 18:38:53 +00:00
"name": "@aditama-labs/nest-autocrud",
2024-10-30 14:38:19 +00:00
"version": "0.0.23",
"description": "NestJS Auto CRUD Library",
"author": "Supan Adit Pratama",
"license": "MIT",
2024-10-30 13:29:19 +00:00
"repository": {
"type": "git",
"url": "https://github.com/aditama-labs/nest-autocrud"
},
"homepage": "https://github.com/aditama-labs/nest-autocrud#readme",
"bugs": "https://github.com/aditama-labs/nest-autocrud/issues",
"publishConfig": {
"access": "public"
},
2024-10-26 08:35:59 +00:00
"scripts": {
"build": "nest build",
2024-10-26 10:41:36 +00:00
"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",
2024-10-26 08:35:59 +00:00
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"libs/**/*.ts\"",
2024-10-29 03:08:36 +00:00
"release": "release-it",
2024-10-26 08:35:59 +00:00
"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",
2024-10-26 12:15:42 +00:00
"@prisma/client": "^5.21.1",
2024-10-26 10:27:12 +00:00
"esm": "^3.2.25",
2024-10-26 08:35:59 +00:00
"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",
2024-10-26 12:15:42 +00:00
"prisma": "^5.21.1",
2024-10-29 03:08:36 +00:00
"release-it": "^17.10.0",
2024-10-26 08:35:59 +00:00
"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": {
2024-10-29 03:54:10 +00:00
"^@aditama-labs/nest-autocrud/skeleton(|/.*)$": "<rootDir>/libs/skeleton/$1",
"^@aditama-labs/nest-autocrud/prisma(|/.*)$": "<rootDir>/libs/prisma/$1"
2024-10-26 08:35:59 +00:00
}
}
2024-10-29 03:22:40 +00:00
}