-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 loc) · 3.79 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
{
"name": "graphql-auth-directive",
"version": "0.5.1",
"private": false,
"description": "GraphQL @auth directive that protects resources from unauthenticated and unauthorized access",
"keywords": [
"auth",
"authentication",
"authorization",
"graphql",
"typescript"
],
"homepage": "https://github.com/carlocorradini/graphql-auth-directive#readme",
"bugs": {
"url": "https://github.com/carlocorradini/graphql-auth-directive/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carlocorradini/graphql-auth-directive.git"
},
"license": "MIT",
"author": {
"name": "Carlo Corradini",
"email": "[email protected]",
"url": "https://linkedin.com/in/carlo-corradini"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "npx tsc --build tsconfig.json",
"build:clean": "npx tsc --build --clean tsconfig.json",
"build:examples": "npx tsc --build examples/tsconfig.json",
"build:watch": "npx tsc --build --watch tsconfig.json",
"check": "npx npm-run-all --npm-path npm --serial check:*",
"check:format": "npx prettier --check .",
"check:license": "npx license-check-and-add check -f resources/license.json",
"check:lint": "npx eslint .",
"check:markdown": "npx markdownlint \"**/*.md\"",
"check:spell": "npx cspell lint --config cspell.json --no-progress --show-context \"**\"",
"fix": "npx npm-run-all --npm-path npm --serial fix:*",
"fix:format": "npx prettier --write .",
"fix:license": "npx license-check-and-add add -f resources/license.json",
"fix:lint": "npx eslint --fix .",
"fix:markdown": "npx markdownlint --fix \"**/*.md\"",
"prepare": "npx ts-patch install -s && npx husky install",
"prepublishOnly": "npm run build:clean && npm run build",
"test": "npx jest --verbose --coverage",
"test:ci": "npm run test -- --ci --forceExit --detectOpenHandles --runInBand",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"@graphql-tools/utils": "^9.2.1"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@cspell/dict-node": "^4.0.1",
"@cspell/dict-npm": "^5.0.0",
"@cspell/dict-typescript": "^3.0.1",
"@cspell/eslint-plugin": "^6.17.0",
"@graphql-tools/schema": "^9.0.4",
"@types/jest": "^29.2.4",
"@types/jsonwebtoken": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"apollo-server": "^3.11.1",
"class-validator": "^0.14.0",
"cspell": "^6.17.0",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-license-header": "^0.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jsonwebtoken": "^9.0.0",
"license-check-and-add": "^4.0.5",
"lint-staged": "^13.1.0",
"markdownlint": "^0.27.0",
"markdownlint-cli": "^0.33.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^29.0.3",
"ts-patch": "^2.1.0",
"tsconfig-paths": "^4.2.0",
"type-graphql": "^2.0.0-beta.1",
"typedi": "^0.10.0",
"typescript": "^4.9.4",
"typescript-transform-paths": "^3.4.6"
},
"peerDependencies": {
"graphql": "^16.6.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"engines": {
"node": ">= 14"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}