-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "@mirrom/nestjs-prisma-pagination",
"version": "0.0.2",
"description": "",
"keywords": [
"nestjs",
"prisma",
"pagination"
],
"author": "Mirko Romstadt",
"license": "ISC",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/mirrom/nestjs-prisma-pagination.git"
},
"bugs": {
"url": "https://github.com/mirrom/nestjs-prisma-pagination/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"scripts": {
"dev": "vitest",
"test": "vitest run",
"build": "tsup src/index.ts --format cjs,esm --dts",
"format": "prettier --write .",
"lint": "tsc && eslint --fix .",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"release": "pnpm run lint && pnpm run test && pnpm run build && changeset publish"
},
"dependencies": {
"@nestjs/swagger": "^6.3.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vitest": "^0.31.1"
}
}