This repository has been archived by the owner on Jan 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
102 lines (102 loc) · 2.58 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
{
"name": "@prisma-korea/graphql-schema-generator",
"version": "0.3.0",
"main": "dist-cjs/index.js",
"types": "dist-cjs/index.d.ts",
"engines": {
"node": ">=12.6"
},
"scripts": {
"dev": "pnpm build && rm -rf prisma/generated && npx prisma generate",
"clean": "rm -rf dist-cjs dist-esm node_modules/.cache",
"build": "pnpm clean && tsc --build tsconfig.cjs.json tsconfig.esm.json",
"test": "jest",
"lint": "eslint src --ext .ts,.js"
},
"author": "dooboolab <support@dooboolab.com>",
"maintainers": [
"Jayden <jayden@dooboolab.com>",
"Hyo <hyo@dooboolab.com>"
],
"sideEffects": false,
"dependencies": {
"@prisma/generator-helper": "^3.5.0",
"@prisma/sdk": "^3.5.0",
"graphql": "^16.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@dooboo/eslint-config": "^1.2.1",
"@prisma/client": "3.4.0",
"@types/jest": "^27.0.2",
"@types/jest-plugin-context": "^2.9.4",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-jest": "^27.3.1",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.3.1",
"jest-diff": "^27.4.2",
"jest-plugin-context": "^2.9.0",
"jest-transform-stub": "^2.0.0",
"prettier": "^2.5.1",
"prisma": "3.4.0",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"typescript-eslint": "^0.0.1-alpha.0"
},
"peerDependencies": {
"prisma": "*"
},
"peerDependenciesMeta": {
"prisma": {
"optional": true
}
},
"description": "Generate Graphql schema(SDL) from Prisma schema using Prisma generator.",
"repository": {
"type": "git",
"url": "git+https://github.com/prisma-korea/graphql-schema-generator.git"
},
"keywords": [
"prisma",
"graphql",
"schema"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/prisma-korea/graphql-schema-generator/issues"
},
"homepage": "https://github.com/prisma-korea/graphql-schema-generator#readme",
"files": [
"dist-cjs",
"dist-esm"
],
"exports": {
".": {
"require": "./dist-cjs/index.js",
"import": "./dist-esm/index.js"
},
"./*": {
"default": "./*.js"
}
},
"typesVersions": {
"*": {
"index.d.ts": [
"./dist-cjs/entrypoints/main.d.ts"
],
"*": [
"./*"
]
}
},
"bin": {
"graphql-schema-generator": "./dist-cjs/index.js"
}
}