-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
102 lines (102 loc) · 3.05 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": "typegraphql-prisma",
"version": "0.28.0",
"scripts": {
"prepare": "husky install",
"build": "tsc",
"package:build": "./package.sh",
"package:publish": "cd package *&& npm publish",
"check:type": "tsc --noEmit --skipLibCheck",
"check:experiments:postgres": "cd ./experiments/postgres && tsc --noEmit --skipLibCheck",
"check:experiments:mongodb": "cd ./experiments/mongodb && tsc --noEmit --skipLibCheck",
"check:format": "prettier --ignore-path ./.cli.prettierignore --check ./**/*.{js,json,ts,tsx}",
"test": "ts-node ./tests/helpers/setup-tests.ts && jest --watch --verbose",
"test:integration": "ts-node ./tests/helpers/setup-tests.ts && env-cmd jest --watch --verbose --config ./jest.config.integration.ts",
"test:ci": "ts-node ./tests/helpers/setup-tests.ts && jest --coverage --verbose --runInBand && jest --coverage --verbose --runInBand --config ./jest.config.integration.ts",
"format": "prettier --ignore-path ./.cli.prettierignore --write ./**/*.{js,json,ts,tsx}"
},
"bin": {
"typegraphql-prisma": "lib/generator.js"
},
"peerDependencies": {
"@prisma/client": "^5.18.0",
"@types/graphql-fields": "^1.3.9",
"@types/node": "*",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.23.0",
"prisma": "^5.18.0",
"tslib": "^2.6.3",
"type-graphql": "^1.1.1 || >=1.2.0-rc || >=2.0.0-beta || >=2.0.0-rc"
},
"dependencies": {
"@prisma/generator-helper": "^5.18.0",
"@prisma/internals": "^5.18.0",
"pluralize": "^8.0.0",
"semver": "^7.6.3",
"ts-morph": "^23.0.0",
"tslib": "^2.6.3"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@prisma/client": "^5.18.0",
"@types/graphql-fields": "^1.3.9",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@types/pg": "^8.11.6",
"@types/pluralize": "0.0.33",
"@types/semver": "^7.5.8",
"@types/validator": "^13.12.0",
"directory-tree": "^3.5.2",
"env-cmd": "^10.1.0",
"graphql": "^16.9.0",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.23.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.8",
"pg": "^8.12.0",
"prettier": "^3.3.3",
"prettier-2": "npm:prettier@^2",
"prisma": "^5.18.0",
"reflect-metadata": "0.1.13",
"ts-jest": "~29.2.4",
"ts-node": "^10.9.2",
"ts-toolbelt": "^9.6.0",
"tslib": "^2.6.3",
"type-graphql": "2.0.0-rc.2",
"typescript": "~5.5.4"
},
"license": "MIT",
"engines": {
"node": ">=20.11.1"
},
"author": {
"name": "Michał Lytek",
"url": "https://github.com/MichalLytek"
},
"repository": {
"type": "git",
"url": "https://github.com/MichalLytek/typegraphql-prisma.git"
},
"bugs": {
"url": "https://github.com/MichalLytek/typegraphql-prisma/issues"
},
"keywords": [
"type-graphql",
"typegraphql",
"prisma",
"prisma2",
"prisma-framework",
"graphql",
"generator"
],
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write"
],
"**/*.{js,json}": [
"prettier --write"
]
},
"private": true
}