-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.63 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
{
"name": "project-metapackage",
"main": "index.js",
"repository": "[email protected]:Mavenomics/MavenWorks.git",
"author": "Mavenomics, Inc",
"private": true,
"license": "GPL-3.0",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "yarn workspaces run clean",
"build": "yarn workspace @mavenomics/metapackage run build && yarn workspaces run build:ci",
"bundle": "yarn workspace @mavenomics/mql-worker run bundle:ci && yarn workspace @mavenomics/standalone run bundle:ci && yarn workspace @mavenomics/viewer run bundle:ci",
"serve": "yarn workspace @mavenomics/standalone run serve",
"registry": "yarn verdaccio --config ./bin/verdaccio-conf.yml",
"test": "jest",
"lint": "tslint --project ./base.tslint.json"
},
"resolutions": {
"**/react": "~16.8.6",
"**/react-dom": "~16.8.6",
"typescript": "3.5.3",
"@types/react": "~16.8.6",
"d3fc": "14.0.40",
"@phosphor/algorithm": "~1.2.0",
"@phosphor/application": "~1.7.0",
"@phosphor/commands": "~1.7.0",
"@phosphor/coreutils": "~1.3.1",
"@phosphor/disposable": "~1.3.0",
"@phosphor/dragdrop": "~1.4.0",
"@phosphor/messaging": "~1.3.0",
"@phosphor/properties": "~1.1.3",
"@phosphor/signaling": "~1.3.0",
"@phosphor/virtualdom": "~1.2.0",
"@phosphor/widgets": "~1.9.0",
"@jupyterlab/application": "~1.1.3",
"@jupyterlab/apputils": "~1.1.3",
"@jupyterlab/attachments": "~1.1.3",
"@jupyterlab/cells": "~1.1.3",
"@jupyterlab/codeeditor": "~1.1.0",
"@jupyterlab/codemirror": "~1.1.3",
"@jupyterlab/coreutils": "~3.1.0",
"@jupyterlab/docregistry": "~1.1.3",
"@jupyterlab/filebrowser": "~1.1.3",
"@jupyterlab/launcher": "~1.1.3",
"@jupyterlab/mainmenu": "~1.1.3",
"@jupyterlab/notebook": "~1.1.3",
"@jupyterlab/outputarea": "~1.1.3",
"@jupyterlab/rendermime": "~1.1.3",
"@jupyterlab/rendermime-interfaces": "~1.4.0",
"@jupyterlab/services": "~4.1.1",
"@jupyterlab/statusbar": "~1.1.3",
"@jupyterlab/ui-components": "~1.1.2",
"@finos/perspective": "0.3.6",
"@finos/perspective-viewer": "0.3.6",
"@finos/perspective-viewer-d3fc": "0.3.6",
"@finos/perspective-viewer-hypergrid": "0.3.6"
},
"devDependencies": {
"@types/jest": "^23.3.8",
"@types/papaparse": "^4.5.9",
"jest": "^23.6.0",
"less": "^3.8.1",
"rimraf": "^2.6.2",
"ts-jest": "23.10.4",
"tslint": "^5.14.0",
"typedoc": "^0.15.0",
"typescript": "~3.5.0",
"verdaccio": "^4.3.4",
"webpack": "^4.29.0",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.2.1"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
}
}