-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.07 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
{
"name": "nestjs-graphql-errors",
"version": "1.0.4",
"description": "A set of utilities to build a code-first, type-safe GraphQL API with NestJS using error as data approach",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
"require": "./dist/index.js"
},
"scripts": {
"start:example": "run-s build start:example:0",
"start:example:0": "nest start",
"build": "tsup",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:coverage": "run-s build test:coverage:0",
"test:coverage:0": "jest --config ./jest.config.ts --coverage",
"test": "run-s test:unit:0 test:e2e:0",
"test:e2e": "run-s build test:e2e:0",
"test:e2e:0": "jest --config ./tests/jest-e2e.config.ts",
"test:unit": "run-s build test:unit:0",
"test:unit:0": "jest --config ./jest.config.ts",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"release": "release-it",
"release:preview": "release-it --dry-run"
},
"devDependencies": {
"@apollo/server": "4.10.5",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@eslint/compat": "1.1.1",
"@eslint/js": "9.8.0",
"@golevelup/ts-jest": "0.5.0",
"@nestjs/apollo": "12.2.0",
"@nestjs/cli": "10.4.2",
"@nestjs/common": "10.3.10",
"@nestjs/core": "10.3.10",
"@nestjs/graphql": "12.2.0",
"@nestjs/platform-express": "10.3.10",
"@nestjs/schematics": "10.1.3",
"@nestjs/testing": "^10.3.10",
"@release-it/conventional-changelog": "8.0.1",
"@swc/cli": "0.4.0",
"@swc/core": "1.7.5",
"@types/jest": "^29.5.12",
"@types/jest-when": "3.5.5",
"@types/supertest": "6.0.2",
"eslint": "9.8.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-typescript-sort-keys": "3.2.0",
"eslint-plugin-unused-imports": "4.0.1",
"globals": "15.9.0",
"graphql": "16.9.0",
"husky": "9.1.4",
"jest": "^29.7.0",
"jest-when": "3.6.0",
"lint-staged": "15.2.7",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"release-it": "17.6.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"ts-node": "10.9.2",
"tsup": "8.2.4",
"typescript": "5.5.4",
"typescript-eslint": "8.0.0"
},
"peerDependencies": {
"@nestjs/common": "8.x || 9.x || 10.x",
"@nestjs/core": "8.x || 9.x || 10.x",
"@nestjs/graphql": "8.x || 9.x || 10.x || 11.x || 12.x"
},
"keywords": [
"Error",
"Exception",
"GraphQL",
"Nest",
"NestJS"
],
"author": "girilloid (https://github.com/Girilloid)",
"repository": {
"type": "git",
"url": "git+https://github.com/Girilloid/nestjs-graphql-errors.git"
},
"bugs": {
"url": "https://github.com/Girilloid/nestjs-graphql-errors/issues"
},
"homepage": "https://github.com/Girilloid/nestjs-graphql-errors#readme",
"license": "MIT",
"engines": {
"node": ">= 16"
},
"packageManager": "[email protected]"
}