-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
package.json
85 lines (85 loc) · 2.21 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
{
"name": "@cubejs-backend/api-gateway",
"description": "Cube.js API Gateway",
"author": "Cube Dev, Inc.",
"version": "0.31.60",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.js.git",
"directory": "packages/cubejs-api-gateway"
},
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
},
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"test": "npm run unit",
"unit": "jest --coverage 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": "^0.31.60",
"@cubejs-backend/shared": "^0.31.60",
"@hapi/joi": "^15.1.1",
"@ungap/structured-clone": "^0.3.4",
"body-parser": "^1.19.0",
"chrono-node": "^2.2.6",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"graphql-scalars": "^1.10.0",
"jsonwebtoken": "^8.3.0",
"jwk-to-pem": "^2.0.4",
"moment": "^2.24.0",
"moment-timezone": "^0.5.27",
"nexus": "^1.1.0",
"node-fetch": "^2.6.1",
"querystring": "^0.2.1",
"ramda": "^0.27.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@cubejs-backend/linter": "^0.31.0",
"@types/express": "^4.17.9",
"@types/hapi__joi": "^15.0.4",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.0",
"@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",
"express": "^4.17.1",
"jest": "^26.6.3",
"mysql": "^2.18.1",
"should": "^13.2.3",
"supertest": "^4.0.2",
"typescript": "~4.9.5"
},
"license": "Apache-2.0",
"eslintConfig": {
"extends": "../cubejs-linter"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": false,
"coverageDirectory": "coverage/",
"collectCoverageFrom": [
"dist/src/**/*.js",
"dist/src/**/*.ts"
],
"coveragePathIgnorePatterns": [
".*\\.d\\.ts"
],
"snapshotResolver": "<rootDir>/test/snapshotResolver.js"
}
}