-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.86 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
116
117
118
119
120
121
122
123
124
{
"name": "GraphQL",
"version": "0.0.2",
"author": "hackolade",
"engines": {
"hackolade": "5.4.7",
"hackoladePlugin": "1.0.0"
},
"contributes": {
"target": {
"applicationTarget": "GraphQL",
"title": "GraphQL",
"versions": []
},
"features": {
"disableMultipleTypes": true,
"enableReverseEngineering": {
"jsonDocument": {
"entities": false,
"model_definitions": true
},
"jsonSchema": {
"entities": false,
"model_definitions": true
},
"ddl": {
"entities": false,
"model_definitions": true
},
"xsd": {
"entities": false,
"model_definitions": true
},
"plugin": true
},
"disableDenormalization": true,
"enableForwardEngineering": {
"jsonDocument": true,
"jsonSchema": true,
"plugin": true,
"apiSchema": false
},
"disablePatternField": true,
"disableChoices": true,
"enableJsonType": false,
"disableNamingConvention": {
"entityLevel": true,
"containerLevel": true,
"fieldLevel": {
"type": true,
"operationObject": true,
"extensions": true,
"media": true
}
},
"disableDefinitions": {
"internal": true,
"external": true
},
"disableRelationships": false,
"relationships": {
"definitionRelationships": true
},
"disableJsonPreview": false,
"enableErdToggle": true,
"externalDefinitionsFromTargetSchema": true,
"apiTarget": true,
"FEScriptCommentsSupported": true,
"displayOptions": {
"hideNonNullableAttributes": true
},
"openModelDefinitionsTabIfNoCollections": true,
"erdDefinitions": {
"enabled": true,
"propertyNames": [
"schemas"
]
},
"definitionSources": {
"multipleSources": true
},
"disablePickFromFieldList": true,
"hideDisabledAttributeTypes": true,
"showReferenceDefinitionNameInsteadOfType": true
}
},
"description": "Hackolade plugin for GraphQL",
"disabled": false,
"dependencies": {
"comment-json": "4.1.0",
"lodash": "4.17.21",
"lodash.get": "4.4.2",
"lodash.isplainobject": "4.0.6",
"lodash.partial": "4.2.1",
"node-uuid": "1.4.7"
},
"lint-staged": {
"*.{js,json}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npx eslint ."
},
"scripts": {
"lint": "eslint . --max-warnings=0",
"package": "node esbuild.package.js"
},
"devDependencies": {
"@hackolade/hck-esbuild-plugins-pack": "0.0.1",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"esbuild": "0.20.2",
"esbuild-plugin-clean": "1.0.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-teamcity": "^1.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-unused-imports": "3.2.0",
"lint-staged": "14.0.1",
"prettier": "3.2.5",
"simple-git-hooks": "2.11.1"
}
}