forked from maticzav/graphql-shield
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.18 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.18 KB
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
{
"name": "@soundboks/graphql-shield",
"version": "1.0.0",
"author": "Matic Zavadlal <[email protected]>",
"license": "MIT",
"contributors": [
"Rasmus Letterkrantz <[email protected]>"
],
"repository": {
"url": "git://github.com/SOUNDBOKS/graphql-shield.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"type": "module",
"main": "./index.js",
"module": "./index.js",
"exports": {
".": "./index.js",
"./package.json": "./package.json",
"./*": "./*"
},
"scripts": {
"prepare": "husky",
"test": "vitest tests",
"test:ci": "vitest --coverage",
"prerelease": "yarn build",
"prettier": "prettier --ignore-path .gitignore --write --list-different \"**/*.{ts,tsx,graphql,yml}\"",
"transpile": "tsc --project tsconfig.build.json",
"build": "yarn build:clean && yarn transpile && cp package.json ./dist",
"build:watch": "chokidar \"src/*.*\" -c \"yarn build\" --initial",
"build:docs": "typedoc",
"build:clean": "rimraf ./dist",
"type-check": "tsc --noEmit",
"postbuild": "npm link",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' 'tests/**/*.ts' --fix"
},
"dependencies": {
"@types/yup": "0.29.13",
"graphql-tag": "^2.12.6",
"object-hash": "^3.0.0",
"yup": "^0.32.0"
},
"peerDependencies": {
"graphql": "^16.11.0",
"graphql-middleware": "^6.1.35"
},
"devDependencies": {
"@apollo/server": "5.0.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@eslint/js": "^9.34.0",
"@graphql-tools/schema": "8.5.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "24.3.0",
"@types/node-fetch": "^2.6.2",
"@types/object-hash": "2.2.1",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"graphql": "16.11.0",
"graphql-middleware": "6.1.35",
"husky": "9.1.7",
"node-fetch": "^2.6.7",
"prettier": "3.6.2",
"rimraf": "^6.0.1",
"semantic-release": "24.2.7",
"typescript": "5.9.2",
"typescript-eslint": "^8.41.0",
"vitest": "^3.2.4"
}
}