-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@nodeteam/nestjs-prisma-pagination",
"version": "1.0.2",
"description": "Paginators for Nest.JS app",
"main": "dist/index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodeteamdev/nestjs-prisma-pagination.git"
},
"keywords": [
"nestjs",
"prisma",
"pagination"
],
"author": "NodeTeam",
"license": "ISC",
"bugs": {
"url": "https://github.com/nodeteamdev/nestjs-prisma-pagination/issues"
},
"homepage": "https://www.nodeteam.onix-systems.com/",
"dependencies": {
"@nestjs/common": "9.4.0",
"@nestjs/testing": "9.4.0",
"jest": "29.5.0",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
},
"devDependencies": {
"@jest/globals": "29.5.0",
"@types/jest": "29.5.1",
"@types/node": "18.16.1",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"eslint": "8.39.0",
"eslint-config-airbnb-base": "15.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
".+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}