-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
131 lines (131 loc) · 3.67 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"version": "1.11.1",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"bin": "./dist/index.js",
"scripts": {
"dev": "tsc -p . --watch",
"test": "jest",
"prebuild": "rm -rf dist",
"build": " tsc -p .",
"prepublish": "npm run build",
"release": "git push --follow-tags origin main && npm publish",
"standard-version": "standard-version",
"update-deps": "npx npm-check-updates -i"
},
"name": "prisma-erd-generator",
"author": "John Fay",
"repository": {
"type": "git",
"url": "https://github.com/keonik/prisma-erd-generator"
},
"homepage": "https://github.com/keonik/prisma-erd-generator#prisma-entity-relationship-diagram-generator",
"keywords": [
"Prisma",
"TypeScript",
"Mermaid",
"Entity Relationship Diagram",
"ERD"
],
"contributors": [
{
"url": "https://github.com/boredland",
"name": "Jonas Strassel"
},
{
"url": "https://github.com/heystevegray",
"name": "Steve Gray"
},
{
"url": "https://github.com/Jason-Abbott",
"name": "Jason Abbott"
},
{
"url": "https://github.com/jsbrain",
"name": "Manuel Maute"
},
{
"url": "https://github.com/homerjam",
"name": "James Homer"
},
{
"url": "https://github.com/janpio",
"name": "Jan Piotrowski"
},
{
"url": "https://github.com/lukevers",
"name": "Luke Evers"
},
{
"url": "https://github.com/ripry",
"name": "rikuyam"
},
{
"url": "https://github.com/francismanansala",
"name": "Francis Manansala"
},
{
"url": "https://github.com/Vitalii4as",
"name": "Vitalii Yarmus"
},
{
"url": "https://github.com/balzafin",
"name": "Petri Julkunen"
},
{
"url": "https://github.com/dznbk",
"name": "D-PONTARO"
},
{
"url": "https://github.com/stephenramthun",
"name": "Stephen Ramthun"
},
{
"url": "https://github.com/maxijonson",
"name": "Tristan Chin"
},
{
"url": "https://github.com/bcanfield",
"name": "Brandin Canfield"
}
],
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/github": "^9.2.3",
"@semantic-release/npm": "^11.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/jest": "^29.5.10",
"all-contributors-cli": "^6.26.1",
"babel-jest": "^29.7.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"mermaid": "^10.6.1",
"prettier": "3.1.0",
"prisma": "^4.0.0 || ^5.0.0",
"puppeteer": "^21.5.2",
"semantic-release": "^22.0.8",
"standard-version": "^9.5.0",
"tslib": "^2.6.2",
"typescript": "^5.3.2"
},
"dependencies": {
"@mermaid-js/mermaid-cli": "^10.6.1",
"@prisma/generator-helper": "^4.0.0 || ^5.0.0",
"dotenv": "^16.3.1"
},
"peerDependencies": {
"@prisma/client": "^4.0.0 || ^5.0.0"
},
"packageManager": "[email protected]"
}