-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.68 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
{
"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.12.0",
"graphql-transformer-core": "^6.12.0"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/jest": "^24.9.0",
"@types/node": "^13.1.7",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"graphql-dynamodb-transformer": "^6.12.0",
"graphql-key-transformer": "^2.17.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"typescript": "^3.7.5"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost",
"testRegex": "(src/__tests__/.*.test.*)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}