-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.56 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
{
"name": "datalake-graphql-wrapper",
"version": "1.0.0",
"description": "The `DataLake GraphQL Wrapper` provides a GraphQL API for presto/trino.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/dbsystel/datalake-graphql-wrapper.git"
},
"bugs": {
"url": "https://github.com/dbsystel/datalake-graphql-wrapper/issues"
},
"homepage": "https://github.com/dbsystel",
"keywords": [
"node",
"typescript",
"presto",
"trino",
"graphql",
"datalake",
"wrapper",
"yoga",
"graphql-yoga",
"pothos",
"generator",
"code-generator"
],
"scripts": {
"dev": "tsx watch src/server.ts",
"start": "tsx src/server.ts",
"cli": "tsx src/codegen/cli.ts",
"cli:index": "tsx src/codegen/cli.ts --onlyindex true",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --config .eslintrc.lint.cjs",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix --config .eslintrc.lint.cjs",
"lint:types": "tsc --pretty --noEmit",
"lint:all": "npm run lint:fix && npm run lint:types"
},
"license": "Apache-2.0",
"author": {
"name": "Data Pioneers @ DB Systel GmbH",
"email": "[email protected]",
"url": "https://github.com/dbsystel"
},
"maintainers": [
{
"name": "Marcus Reinhardt"
},
{
"name": "Stephan Moritz Becker"
}
],
"dependencies": {
"@graphql-yoga/render-graphiql": "3.9.0",
"@pothos/core": "3.29.0",
"args": "5.0.3",
"chalk": "5.2.0",
"cross-spawn": "7.0.3",
"date-fns": "2.29.3",
"dotenv": "16.0.3",
"ejs": "3.1.9",
"globby": "13.1.4",
"graphql": "16.6.0",
"graphql-scalars": "1.21.3",
"graphql-yoga": "3.9.0",
"json-column-parser": "2.0.0",
"lodash-es": "4.17.21",
"ora": "6.3.0",
"presto-client": "0.13.0",
"replace-special-characters": "1.2.7",
"sql.js": "1.8.0",
"to-json-schema": "roopen219/to-json-schema",
"typeorm": "0.3.15"
},
"devDependencies": {
"@swc-node/register": "1.6.4",
"@types/args": "5.0.0",
"@types/cross-spawn": "6.0.2",
"@types/ejs": "3.1.2",
"@types/lodash-es": "4.17.7",
"@types/node": "18.15.11",
"@types/prompts": "2.4.4",
"@types/to-json-schema": "0.2.1",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unused-imports": "2.0.0",
"prettier": "2.8.7",
"prompts": "2.4.2",
"tsx": "3.12.6",
"typescript": "4.9.5"
}
}