-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
98 lines (98 loc) · 3.17 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
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@voila-dashboards/jupyterlab-gridstack",
"version": "0.2.0",
"description": "A JupyterLab extension to create Voila dashboards using GridStack",
"homepage": "https://github.com/voila-dashboards/voila-gridstack",
"repository": {
"type": "git",
"url": "https://github.com/voila-dashboards/voila-gridstack"
},
"bugs": {
"url": "https://github.com/voila-dashboards/voila-gridstack/issues"
},
"license": "BSD-3-Clause",
"author": "Voila Development Team",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"schema/**/*.json"
],
"main": "lib/index.js",
"types": "lib/src/index.d.ts",
"style": "style/index.css",
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"build:test": "tsc --build tsconfig.test.json",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:labextension": "rimraf ../../voila-gridstack/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"prepare": "jlpm run clean && jlpm run build:prod",
"test": "jest",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyter-widgets/base": "^4.0.0",
"@jupyter-widgets/jupyterlab-manager": "^3.0.0",
"@jupyterlab/application": "^3.1.8",
"@jupyterlab/apputils": "^3.1.8",
"@jupyterlab/cells": "^3.1.8",
"@jupyterlab/codeeditor": "^3.1.8",
"@jupyterlab/coreutils": "^5.1.8",
"@jupyterlab/docregistry": "^3.1.8",
"@jupyterlab/mainmenu": "^3.1.8",
"@jupyterlab/notebook": "^3.1.8",
"@jupyterlab/observables": "^4.1.8",
"@jupyterlab/outputarea": "^3.1.8",
"@jupyterlab/rendermime": "^3.1.8",
"@jupyterlab/shared-models": "^3.1.8",
"@jupyterlab/ui-components": "^3.1.8",
"@lumino/algorithm": "^1.3.3",
"@lumino/commands": "^1.12.0",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/dragdrop": "^1.7.1",
"@lumino/messaging": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"@lumino/widgets": "^1.19.0",
"gridstack": "^4.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"yjs": "^13.5.6"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@jupyterlab/builder": "^3.1.9",
"@jupyterlab/testutils": "3.1.8",
"@types/codemirror": "^0.0.97"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"extension": true,
"outputDir": "../../voila-gridstack/labextension",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
},
"@jupyter-widgets/jupyterlab-manager": {
"bundled": false,
"singleton": true
}
}
}
}