-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathpackage.json
130 lines (130 loc) · 4.36 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "prisma-nestjs-graphql",
"version": "0.0.0-dev",
"license": "MIT",
"description": "Generate object types, inputs, args, etc. from prisma schema file for usage with @nestjs/graphql module",
"main": "index.js",
"bin": "bin.js",
"repository": {
"type": "git",
"url": "git+https://github.com/unlight/nestjs-graphql-prisma.git"
},
"bugs": {
"url": "https://github.com/unlight/nestjs-graphql-prisma/issues"
},
"homepage": "https://github.com/unlight/nestjs-graphql-prisma#readme",
"keywords": [
"nestjs",
"graphql",
"prisma",
"prisma-generator",
"nestjs-graphql"
],
"scripts": {
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"mocha": "node node_modules/mocha/bin/mocha",
"test:r": "npm run mocha -- -r ts-node/register src/**/*.spec.ts",
"test:cov": "c8 --reporter text --exclude \"**/*.spec.ts\" --exclude \"**/test/**\" npm run test:r -- --no-timeouts",
"test:w": "npm run test:r -- --watch-files src --watch --timeout=10s",
"test:d": "ndb -r @swc/register node_modules/mocha/bin/_mocha --no-timeouts --watch-files src/**/*.ts --watch src/**/*.spec.ts",
"tscheck": "tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"eslint": "node node_modules/eslint/bin/eslint \"src/**/*.{ts,tsx}\"",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"eslint:fix": "npm run eslint -- --fix",
"build": "sh Taskfile bundle",
"prisma:g": "node node_modules/prisma/build/index.js generate",
"format": "npx prettier ./@generated --write",
"regen": "rm -rf @generated && npm run prisma:g && npm run format",
"example": "ts-node-dev example/main.ts",
"clean_cache": "rm -rf node_modules/.cache",
"compatibilty_check": "sh Taskfile compatibilty_check",
"commit": "cz"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"ghooks": {
"pre-commit": "precise-commits",
"commit-msg": "sh Taskfile commit_lint"
}
},
"dependencies": {
"@nestjs/apollo": "^10.0.9",
"@prisma/generator-helper": "^3.13.0",
"await-event-emitter": "^2.0.2",
"filenamify": "4.X",
"flat": "^5.0.2",
"get-relative-path": "^1.0.2",
"json5": "^2.2.1",
"lodash": "^4.17.21",
"outmatch": "^0.7.0",
"pluralize": "^8.0.0",
"pupa": "2.X",
"ts-morph": ">=11"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@nestjs/common": "^8.4.4",
"@nestjs/core": "^8.4.4",
"@nestjs/graphql": "^10.0.10",
"@nestjs/platform-express": "^8.4.4",
"@paljs/plugins": "^4.0.18",
"@prisma/client": "^3.13.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@swc/core": "^1.2.174",
"@swc/helpers": "^0.3.10",
"@swc/register": "^0.1.10",
"@types/flat": "^5.0.2",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"@types/pluralize": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"apollo-server-express": "^3.6.7",
"c8": "^7.11.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"commitizen": "^4.2.4",
"cz-customizable": "^6.3.0",
"decimal.js": "^10.3.1",
"eslint": "^8.14.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-etc": "^2.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-regexp": "^1.7.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-class-members": "^1.14.1",
"eslint-plugin-unicorn": "^42.0.0",
"eslint-plugin-wix-editor": "^3.3.0",
"expect": "^28.0.2",
"ghooks": "^2.0.4",
"git-branch-is": "^4.0.0",
"graphql": "^16.4.0",
"graphql-scalars": "^1.17.0",
"graphql-type-json": "^0.3.2",
"mocha": "^10.0.0",
"ololog": "^1.1.175",
"precise-commits": "^1.0.2",
"prettier": "^2.6.2",
"prisma": "^3.13.0",
"prisma-graphql-type-decimal": "^2.0.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"rxjs": "^7.5.5",
"semantic-release": "^19.0.2",
"simplytyped": "^3.3.0",
"temp-dir": "^2.0.0",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"watchexec-bin": "^1.0.0"
}
}