This repository has been archived by the owner on Nov 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
84 lines (84 loc) · 2.04 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
79
80
81
82
83
84
{
"name": "nestjs-zod-prisma",
"version": "0.0.0-set-by-ci",
"description": "A Prisma generator that creates Zod schemas for all of your models",
"license": "MIT",
"author": "Evgeny Zakharov",
"homepage": "https://github.com/risenforces/nestjs-zod-prisma#readme",
"repository": {
"type": "git",
"url": "https://github.com/risenforces/nestjs-zod-prisma.git"
},
"bugs": {
"url": "https://github.com/risenforces/nestjs-zod-prisma/issues"
},
"main": "dist/index.js",
"module": "dist/nestjs-zod-prisma.esm.js",
"typings": "dist/index.d.ts",
"bin": {
"nestjs-zod-prisma": "bin/cli.js"
},
"keywords": [
"zod",
"prisma",
"generator",
"nestjs-zod"
],
"files": [
"bin",
"dist"
],
"scripts": {
"build": "dts build --target node --format cjs --rollupTypes",
"lint": "eslint --ext .ts,.tsx src",
"lint:fix": "yarn lint --fix",
"prepublish": "dts build --target node --format cjs --rollupTypes",
"start": "dts watch",
"test": "dts test --maxWorkers=4 --verbose"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@prisma/generator-helper": "^4.3.1",
"parenthesis": "^3.1.8",
"ts-morph": "^13.0.2",
"zod": "^3.17.3"
},
"devDependencies": {
"@eslint-kit/eslint-config-base": "^5.0.2",
"@eslint-kit/eslint-config-node": "^2.0.0",
"@eslint-kit/eslint-config-patch": "^1.0.0",
"@eslint-kit/eslint-config-prettier": "^5.0.0",
"@eslint-kit/eslint-config-typescript": "^5.2.0",
"@prisma/client": "^4.3.1",
"@prisma/sdk": "^4.0.0",
"@tsconfig/recommended": "^1.0.1",
"@types/fs-extra": "^9.0.13",
"@typescript-eslint/parser": "^5.25.0",
"dts-cli": "^1.1.5",
"eslint": "7.32.0",
"execa": "^5.1.0",
"fast-glob": "^3.2.5",
"fs-extra": "^10.0.0",
"jest-mock-extended": "^2.0.4",
"nestjs-zod": "^1.1.0",
"prettier": "2.3.0",
"prisma": "^4.3.1",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"peerDependencies": {
"decimal.js": "^10.0.0",
"nestjs-zod": "^1.1.0",
"prisma": ">=4.0.0"
},
"peerDependenciesMeta": {
"decimal.js": {
"optional": true
}
},
"engines": {
"node": ">=14"
}
}