2020-06-26 21:25:03 +00:00
|
|
|
{
|
|
|
|
"name": "nestjs-paginate",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"author": "Philipp Petzold <ppetzold@protonmail.com>",
|
|
|
|
"license": "MIT",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"typings": "lib/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"lib/**/*"
|
|
|
|
],
|
2023-12-04 09:32:05 +00:00
|
|
|
"description": "Pagination and filtering helper method for TypeORM repositories or query builders using Nest.js framework.",
|
2020-06-26 21:25:03 +00:00
|
|
|
"keywords": [
|
|
|
|
"nestjs",
|
|
|
|
"typeorm",
|
|
|
|
"express",
|
|
|
|
"pagination",
|
|
|
|
"paginate",
|
2020-06-28 17:56:45 +00:00
|
|
|
"filtering",
|
|
|
|
"search"
|
2020-06-26 21:25:03 +00:00
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"prebuild": "rimraf lib",
|
|
|
|
"build": "tsc",
|
2023-03-08 11:35:53 +00:00
|
|
|
"prepare": "tsc",
|
2023-01-30 11:17:14 +00:00
|
|
|
"dev:yalc": "nodemon --watch src --ext ts --exec 'npm run build && yalc push'",
|
2020-06-26 21:25:03 +00:00
|
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
2021-10-12 11:06:20 +00:00
|
|
|
"format:ci": "prettier --list-different \"src/**/*.ts\"",
|
2021-10-10 13:06:38 +00:00
|
|
|
"lint": "eslint -c .eslintrc.json --ext .ts --max-warnings 0 src",
|
2020-06-26 21:25:03 +00:00
|
|
|
"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"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-02-16 08:51:34 +00:00
|
|
|
"@nestjs/common": "^10.3.3",
|
|
|
|
"@nestjs/platform-express": "^10.3.3",
|
|
|
|
"@nestjs/testing": "^10.3.3",
|
2023-11-08 08:32:07 +00:00
|
|
|
"@types/express": "^4.17.21",
|
2024-02-16 08:51:25 +00:00
|
|
|
"@types/jest": "^29.5.12",
|
2023-12-11 08:31:33 +00:00
|
|
|
"@types/lodash": "^4.14.202",
|
2024-02-16 08:54:53 +00:00
|
|
|
"@types/node": "^20.11.19",
|
2024-02-16 09:00:20 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
|
|
"@typescript-eslint/parser": "^6.21.0",
|
2024-02-16 08:51:43 +00:00
|
|
|
"dotenv": "^16.4.4",
|
2023-12-26 11:17:36 +00:00
|
|
|
"eslint": "^8.56.0",
|
2023-12-05 10:28:08 +00:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-01-11 07:44:58 +00:00
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
2024-02-16 08:55:19 +00:00
|
|
|
"fastify": "^4.26.1",
|
2023-09-12 07:12:36 +00:00
|
|
|
"jest": "^29.7.0",
|
2023-08-17 00:59:18 +00:00
|
|
|
"pg": "^8.11.3",
|
2023-08-29 16:24:35 +00:00
|
|
|
"prettier": "^3.0.3",
|
2023-12-11 08:10:42 +00:00
|
|
|
"reflect-metadata": "^0.1.14",
|
2023-04-27 01:29:00 +00:00
|
|
|
"rxjs": "^7.8.1",
|
2024-01-08 07:55:18 +00:00
|
|
|
"sqlite3": "^5.1.7",
|
2024-02-16 09:00:08 +00:00
|
|
|
"ts-jest": "^29.1.2",
|
2023-12-11 08:10:34 +00:00
|
|
|
"ts-node": "^10.9.2",
|
2023-06-20 23:44:14 +00:00
|
|
|
"typeorm": "^0.3.17",
|
2023-12-11 08:11:23 +00:00
|
|
|
"typescript": "^5.3.3"
|
2020-06-26 21:25:03 +00:00
|
|
|
},
|
2021-10-12 11:22:25 +00:00
|
|
|
"dependencies": {
|
|
|
|
"lodash": "^4.17.21"
|
|
|
|
},
|
2020-06-26 21:25:03 +00:00
|
|
|
"peerDependencies": {
|
2024-02-16 08:51:34 +00:00
|
|
|
"@nestjs/common": "^10.3.3",
|
2024-02-16 09:00:00 +00:00
|
|
|
"@nestjs/swagger": "^7.3.0",
|
2022-10-08 22:27:50 +00:00
|
|
|
"express": "^4.18.2",
|
2024-02-16 08:55:19 +00:00
|
|
|
"fastify": "^4.26.1",
|
2023-06-20 23:44:14 +00:00
|
|
|
"typeorm": "^0.3.17"
|
2020-06-26 21:25:03 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"json",
|
|
|
|
"ts"
|
|
|
|
],
|
|
|
|
"rootDir": "src",
|
|
|
|
"testRegex": ".spec.ts$",
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
|
|
},
|
|
|
|
"coverageDirectory": "../coverage",
|
2023-12-04 09:32:05 +00:00
|
|
|
"testEnvironment": "node",
|
|
|
|
"setupFiles": ["<rootDir>/../jest.setup.ts"]
|
2020-06-26 21:25:03 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/ppetzold/nestjs-paginate.git"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/ppetzold/nestjs-paginate#readme",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/ppetzold/nestjs-paginate/issues"
|
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"release": {
|
|
|
|
"branches": [
|
|
|
|
"master"
|
|
|
|
]
|
|
|
|
}
|
2021-10-12 11:22:25 +00:00
|
|
|
}
|