-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.78 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
{
"name": "@nestql/prisma-crud",
"version": "5.0.0",
"scripts": {
"build": "tsc",
"package:build": "./package.sh",
"package:publish": "cd package && npm publish --access public",
"check:type": "tsc --noEmit",
"check:experiments:postgres": "cd ./experiments/postgres && tsc --noEmit",
"check:experiments:mongodb": "cd ./experiments/mongodb && tsc --noEmit",
"check:format": "prettier --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.js",
"format": "prettier --write ./**/*.{js,json,ts,tsx}",
"prepare": "husky install"
},
"bin": {
"nestql-crud": "lib/generator.js"
},
"peerDependencies": {
"@nestjs/graphql": "^12.0.8",
"@prisma/client": "~4.5.0",
"@types/graphql-fields": "^1.3.4",
"@types/node": "*",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.20.0",
"prisma": "~4.8.1",
"tslib": "^2.4.1"
},
"dependencies": {
"@prisma/generator-helper": "~5.0.0",
"@prisma/internals": "~5.0.0",
"pluralize": "^8.0.0",
"semver": "^7.5.4",
"ts-morph": "^16.0.0",
"tslib": "^2.4.1"
},
"devDependencies": {
"@jest/types": "^29.6.1",
"@prisma/client": "~5.0.0",
"@prisma/fetch-engine": "5.0.0",
"@types/graphql-fields": "^1.3.5",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@types/pg": "^8.10.2",
"@types/pluralize": "~0.0.30",
"@types/semver": "^7.5.0",
"directory-tree": "^3.5.1",
"env-cmd": "^10.1.0",
"graphql": "^16.7.1",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.22.2",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"pg": "^8.11.1",
"prettier": "^3.0.0",
"prisma": "^5.0.0",
"reflect-metadata": "^0.1.13",
"ts-jest": "~29.1.1",
"ts-node": "^10.9.1",
"ts-toolbelt": "^9.6.0",
"tslib": "^2.6.0",
"typescript": "~5.1.6"
},
"license": "MIT",
"engines": {
"node": ">=12.4"
},
"author": {
"name": "Serge Närhi",
"url": "https://github.com/SergeNarhi"
},
"repository": {
"type": "git",
"url": "https://github.com/nestql/prisma-crud.git"
},
"bugs": {
"url": "https://github.com/nestql/prisma-crud/issues"
},
"keywords": [
"nest-graphql",
"nest",
"type-graphql",
"typegraphql",
"prisma",
"prisma2",
"prisma-framework",
"graphql",
"crud",
"generator"
],
"private": true,
"lint-staged": {
"*.{js,json,ts,tsx}": "prettier --write"
}
}