-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
package.json
74 lines (74 loc) · 2.84 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
{
"name": "cubejs",
"version": "0.1.0",
"description": "",
"private": true,
"workspaces": {
"packages": [
"rust/*",
"packages/*"
],
"nohoist": [
"packages/cubejs-client-ngx/*",
"**/vue/*"
]
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"watch-local": "CUBEJS_API_URL=http://localhost:6020/cubejs-api/v1 rollup -c -w",
"lint:npm": "yarn npmPkgJsonLint packages/*/package.json rust/package.json",
"lint": "yarn lint:npm && yarn lerna run lint",
"lint:fix": "lerna run lint:fix",
"tsc": "tsc --build",
"tsc:watch": "tsc --build --watch",
"clean": "rimraf packages/*/{tsconfig.tsbuildinfo,lib,dist}",
"postinstall": "lerna link",
"link:dev": "cd ./packages/cubejs-backend-shared && yarn link && cd ../cubejs-backend-cloud && yarn link && cd ../cubejs-backend-native && yarn link && cd ../cubejs-server && yarn link && cd ../cubejs-server-core && yarn link && cd ../cubejs-api-gateway && yarn link && cd ../cubejs-schema-compiler && yarn link && cd ../cubejs-query-orchestrator && yarn link && cd ../cubejs-athena-driver && yarn link && cd ../cubejs-duckdb-driver && yarn link && cd ../cubejs-bigquery-driver && yarn link && cd ../cubejs-postgres-driver && yarn link && cd ../cubejs-databricks-jdbc-driver && yarn link && cd ../cubejs-mssql-driver && yarn link && cd ../cubejs-clickhouse-driver && yarn link && cd ../cubejs-snowflake-driver && yarn link && cd ../cubejs-cubestore-driver && yarn link && cd ../cubejs-templates && yarn link && cd ../cubejs-client-core && yarn link && cd ../cubejs-client-ws-transport && yarn link && cd ../cubejs-playground && yarn link"
},
"author": "Cube Dev, Inc.",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.17.0",
"core-js": "^3.34.0",
"lerna": "^4.0.0"
},
"files": [
"src",
"dist"
],
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.9",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^27",
"flush-promises": "^1.0.2",
"husky": "^5.0.4",
"is-ci": "^2.0.0",
"less": "^3.13.1",
"npm-package-json-lint": "^5.1.0",
"postcss": "^8.2.8",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "2.53.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typescript": "~5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git"
},
"resolutions": {
"@types/node": "^18",
"@types/ramda": "0.27.40"
},
"license": "MIT",
"packageManager": "[email protected]"
}