-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.06 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.06 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
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
{
"name": "@cubejs-backend/api-gateway",
"description": "Cube.js API Gateway",
"author": "Cube Dev, Inc.",
"version": "1.6.10",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
"directory": "packages/cubejs-api-gateway"
},
"engines": {
"node": "^14.0.0 || ^16.0.0 || >=17.0.0"
},
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"test": "npm run unit",
"unit": "CUBE_JS_NATIVE_API_GATEWAY_INTERNAL=true jest --coverage --forceExit dist/test",
"build": "rm -rf dist && npm run tsc",
"tsc": "tsc",
"watch": "tsc -w",
"lint": "eslint \"**/*.{ts,tsx}\"",
"lint:fix": "eslint --fix \"**/*.{ts,tsx}\""
},
"files": [
"README.md",
"dist/src/*"
],
"dependencies": {
"@cubejs-backend/native": "1.6.10",
"@cubejs-backend/query-orchestrator": "1.6.10",
"@cubejs-backend/shared": "1.6.10",
"@ungap/structured-clone": "^0.3.4",
"assert-never": "^1.4.0",
"body-parser": "^1.19.0",
"chrono-node": "2.6.2",
"express": "^4.21.1",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"graphql-scalars": "^1.10.0",
"graphql-tag": "^2.12.6",
"http-proxy-middleware": "^3.0.0",
"inflection": "^1.12.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"jwk-to-pem": "^2.0.4",
"moment": "^2.24.0",
"moment-timezone": "^0.5.46",
"nexus": "^1.1.0",
"node-fetch": "^2.6.1",
"ramda": "^0.27.0",
"uuid": "^8.3.2",
"zod": "^4.1.13"
},
"devDependencies": {
"@cubejs-backend/linter": "1.6.10",
"@types/express": "^4.17.21",
"@types/jest": "^29",
"@types/jsonwebtoken": "^9.0.2",
"@types/jwk-to-pem": "^2.0.0",
"@types/mysql": "^2.15.19",
"@types/node-fetch": "^2.5.8",
"@types/ramda": "^0.27.32",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.1",
"jest": "^29",
"mysql": "^2.18.1",
"should": "^13.2.3",
"supertest": "^4.0.2",
"typescript": "~5.2.2"
},
"license": "Apache-2.0",
"eslintConfig": {
"extends": "../cubejs-linter"
}
}