-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
82 lines (82 loc) · 2.57 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
{
"name": "prisma-json-schema-generator",
"version": "5.1.5",
"main": "dist/index.js",
"license": "MIT",
"files": [
"dist"
],
"description": "JSON generator for prisma schema",
"author": {
"name": "Valentin Palkovic",
"email": "dev@valentinpalkovic.dev"
},
"keywords": [
"prisma2",
"prisma",
"prisma-generator",
"prisma-schema",
"code-generation",
"json"
],
"homepage": "https://github.com/valentinpalkovic/prisma-json-schema-generator",
"repository": {
"url": "https://github.com/valentinpalkovic/prisma-json-schema-generator.git"
},
"bugs": {
"email": "bugs@valentinpalkovic.dev",
"url": "https://github.com/valentinpalkovic/prisma-json-schema-generator/issues"
},
"dependencies": {
"@prisma/generator-helper": "5.8.1",
"@prisma/internals": "5.8.1"
},
"devDependencies": {
"@prisma/client": "5.9.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "11.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.3",
"@semantic-release/npm": "11.0.1",
"@semantic-release/release-notes-generator": "12.1.0",
"@swc/cli": "0.3.9",
"@swc/core": "1.4.0",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.12",
"@types/json-schema": "7.0.15",
"@types/node": "20.11.17",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"ajv": "8.12.0",
"ajv-formats": "2.1.1",
"browserslist": "4.22.3",
"conventional-changelog-conventionalcommits": "7.0.2",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-jest": "27.6.3",
"eslint-plugin-prettier": "5.1.3",
"jest": "29.7.0",
"prettier": "3.0.3",
"prisma": "5.9.1",
"typescript": "5.3.3"
},
"scripts": {
"generate": "prisma generate",
"clean": "rm -rf dist",
"type-check": "tsc",
"build": "npm run clean && swc src --out-dir dist --strip-leading-paths --extensions '.ts'",
"test": "jest src",
"lint": "eslint --ext .ts \"src/**/*.ts\"",
"lint:fix": "npm run lint -- --fix"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"semi": false,
"trailingComma": "all"
},
"bin": {
"prisma-json-schema-generator": "dist/cli.js"
}
}