forked from cube-js/cube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.02 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
{
"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 && patch-package",
"link:dev": "cd packages/cubejs-backend-shared && cd ../cubejs-backend-shared && npm link && cd ../cubejs-backend-cloud && npm link && cd ../cubejs-backend-native && npm link && cd ../cubejs-server && npm link && cd ../cubejs-server-core && npm link && cd ../cubejs-api-gateway && npm link && cd ../cubejs-schema-compiler && npm link && cd ../cubejs-query-orchestrator && npm link && cd ../cubejs-athena-driver && npm link && cd ../cubejs-bigquery-driver && npm link && cd ../cubejs-postgres-driver && npm link && cd ../cubejs-databricks-jdbc-driver && npm link && cd ../cubejs-mssql-driver && npm link && cd ../cubejs-templates && npm link && cd ../cubejs-client-core && npm link && cd ../cubejs-client-ws-transport && npm link && cd ../cubejs-playground && npm link"
},
"author": "Cube Dev, Inc.",
"dependencies": {
"@babel/runtime-corejs2": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"core-js": "^3.6.5",
"lerna": "^3.13.1",
"ramda": "^0.27.0",
"rollup-plugin-dts": "^1.1.8",
"patch-package": "^6.4.7",
"whatwg-fetch": "^3.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": "^26.0.3",
"babel-runtime": "^6.26.0",
"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-less": "^1.1.3",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "~4.1.5"
},
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.js.git"
},
"resolutions": {
"@types/node": "^12",
"@types/ramda": "0.27.40",
"rc-tree": "4.1.5"
},
"license": "MIT"
}