-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
{
"name": "typegraphql-prisma-graphql-query-purifier",
"version": "1.0.18",
"description": "A small library to match .gql queries vs user input. Removes fields from user requests that are not expected by your frontend code.",
"main": "./dist/index.js",
"author": "multipliedtwice",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc",
"prepublish": "npm run build",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multipliedtwice/typegraphql-prisma-graphql-query-purifier.git"
},
"keywords": [
"graphql",
"typegraphql",
"typegraphql-prisma",
"gql queries",
"filtering"
],
"bugs": {
"url": "https://github.com/multipliedtwice/typegraphql-prisma-graphql-query-purifier/issues"
},
"homepage": "https://github.com/multipliedtwice/typegraphql-prisma-graphql-query-purifier#readme",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"eslint": "^8.56.0",
"graphql": "^16.8.1",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"terser": "^5.26.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"fast-glob": "^3.3.3"
}
}