-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
78 lines (78 loc) · 2.16 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"version": "1.0.0-beta.18",
"description": "CRUD package for NestJS and Prisma ORM",
"homepage": "https://kepelrs.github.io/nestjs-prisma-crud",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "cd test && yarn run test",
"test:watch": "cd test && yarn run test:watch",
"test:cov": "cd test && yarn run test:cov",
"test:clear": "cd test && yarn run test:clear",
"lint": "tsdx lint src test",
"prepare": "tsdx build",
"pretty": "prettier --write \"./**/*.{js,ts,json}\""
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint src test"
}
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 4,
"arrowParens": "always"
},
"name": "nestjs-prisma-crud",
"author": "Kepelrs",
"module": "dist/nestjs-prisma-crud.esm.js",
"devDependencies": {
"@nestjs/common": "10.4.15",
"@nestjs/core": "10.4.15",
"@prisma/client": "6.1.0",
"husky": "9.1.7",
"prisma": "6.1.0",
"rxjs": "7.8.1",
"tsdx": "0.14.1",
"tslib": "2.8.1",
"typescript": "5.7.2"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@prisma/client": "^3.0.2 || ^4.0.0 || ^5.0.0 || ^6.0.0",
"rxjs": "^7.3.0"
},
"dependencies": {
"joi": "^17.4.2",
"object-traversal": "^1.0.0"
},
"np": {
"yarn": true,
"contents": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/kepelrs/nestjs-prisma-crud.git"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^8.0.0",
"**/@typescript-eslint/parser": "^8.0.0",
"**/jest": "^29.0.0",
"**/ts-jest": "^29.0.0",
"**/typescript": "5.7.2"
}
}