-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
72 lines (72 loc) · 1.87 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
{
"name": "@vegardit/prisma-generator-nestjs-dto",
"description": "Generates DTO and Entity classes from Prisma Schema for NestJS",
"version": "1.5.1",
"license": "Apache-2.0",
"author": {
"name": "Benjamin Kroeger",
"email": "[email protected]",
"url": "https://vegardit.com/"
},
"main": "dist/index.js",
"keywords": [
"prisma",
"generator",
"nestjs",
"dto",
"typescript"
],
"scripts": {
"prebuild": "npm run cleanup:generated",
"build": "tsc --project tsconfig.build.json",
"format": "prettier --write \"{src,test}/**/*.{js,ts}\"",
"prelint": "npm run format -- --loglevel error",
"lint": "eslint \"{src,test}/**/*.{js,ts}\" --fix",
"pretest": "npm run lint",
"test": "jest",
"test:watch": "jest --watch",
"cleanup:generated": "rimraf src/@generated",
"pregenerate": "npm run cleanup:generated",
"generate": "npx prisma generate && npm run format -- --loglevel error"
},
"repository": {
"type": "git",
"url": "https://github.com/vegardit/prisma-generator-nestjs-dto"
},
"bin": {
"prisma-generator-nestjs-dto": "dist/cli.js"
},
"engines": {
"node": ">=14.18"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@prisma/generator-helper": "^3.2.1",
"@prisma/sdk": "^3.2.1",
"case": "^1.6.3",
"make-dir": "^3.1.0",
"slash": "^3.0.0",
"tar": "^6.1.11"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.4",
"prettier": "^2.4.1",
"prisma": "^3.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}