-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.2 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
{
"name": "prisma-models-graph",
"description": "Generates a bi-directional models graph for schema without strict relationship",
"version": "1.5.1",
"license": "MIT",
"bin": {
"prisma-models-graph": "./dist/generator.js"
},
"engines": {
"node": ">=14.0"
},
"scripts": {
"start": "node dist/bin.js",
"dev": "npx tsc -w",
"build": "npx tsc",
"prepack": "yarn build",
"test": "jest",
"lint": "eslint --fix .",
"prepare": "husky install",
"usage": "ts-node usage/index.ts"
},
"dependencies": {
"@prisma/client": "^5.2.0",
"@prisma/generator-helper": "^5.2.0",
"@prisma/internals": "^5.2.0",
"prettier": "3.0.3",
"prisma": "^5.2.0",
"ts-node": "^10.9.1",
"ts-morph": "20.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@typescript-eslint/typescript-estree": "^5.61.0",
"eslint": "^8.44.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jest-formatting": "^3.1.0",
"husky": "7.0.4",
"jest": "^29.6.1",
"semantic-release": "^18.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"homepage": "https://github.com/dangchinh25/prisma-models-graph",
"repository": {
"type": "git",
"url": "https://github.com/dangchinh25/prisma-models-graph"
},
"author": "Chinh Le [email protected]",
"keywords": [
"prisma",
"prisma2",
"generator"
],
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): set `package.json` to ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}