forked from kimjbstar/prisma-class-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.15 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
{
"name": "prisma-entity-generator",
"version": "0.1.19",
"description": "Class generator from Prisma schema",
"main": "dist/index.js",
"license": "MIT",
"keywords": [
"prisma",
"nestjs",
"typescript",
"generator"
],
"homepage": "https://github.com/shalabh1801/prisma-class-generator",
"repository": {
"type": "git",
"url": "git://github.com/shalabh1801/prisma-class-generator.git"
},
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"dev": "node -r ts-node/register src/index.ts",
"prepublish": "tsc"
},
"bin": {
"prisma-entity-generator": "dist/bin.js"
},
"engines": {
"node": ">=14"
},
"author": {
"name": "kimjbstar",
"email": "[email protected]"
},
"contributors": [
{
"name": "shalabh1801",
"email": "[email protected]"
}
],
"dependencies": {
"@prisma/client": "3.1.1",
"@prisma/generator-helper": "^3.1.1",
"@prisma/sdk": "^3.1.1",
"change-case": "^4.1.2"
},
"devDependencies": {
"@types/node": "^16.6.2",
"prettier": "^2.4.1",
"prisma": "3.1.1",
"swagger-ui-express": "^4.1.6",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"_moduleAliases": {
"@src": "dist"
}
}