forked from hirochachacha/graphql-auto-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.76 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
{
"name": "graphql-auto-transformer",
"version": "1.3.1",
"main": "./lib/index.js",
"author": "Hiroshi Ioka",
"license": "Apache-2.0",
"description": "A GraphQL transform that control accessibility of auto generated fields",
"homepage": "https://github.com/hirochachacha/graphql-auto-transformer#readme",
"repository": {
"type": "git",
"url": "https://github.com/hirochachacha/graphql-auto-transformer"
},
"keywords": [
"graphql",
"amplify",
"appsync",
"aws"
],
"files": [
"lib"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint 'src/**/*.ts'",
"format": "eslint 'src/**/*.ts' --fix",
"clean": "rm -rf lib",
"prepare": "yarn clean && yarn lint && yarn build"
},
"dependencies": {
"graphql": "^14.5.8",
"graphql-transformer-common": "^4.19.3",
"graphql-transformer-core": "^6.28.6"
},
"devDependencies": {
"@types/deep-diff": "^1.0.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^26.0.23",
"@types/node": "^13.1.7",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"graphql-auth-transformer": "^6.24.6",
"graphql-dynamodb-transformer": "^6.22.6",
"graphql-key-transformer": "^2.23.6",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost",
"testRegex": "(src/__tests__/.*.test.*)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}