forked from lux-org/lux-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.31 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "luxwidget",
"version": "0.1.4",
"description": "A Custom Jupyter Widget Library",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"webpack.config.js",
"tsconfig.json",
"luxwidget/*.py",
"luxwidget/nbextension/static/*",
"*.py",
"src/*.tsx",
"src/*.ts",
"lib/**/*.js",
"lib/**/*.ts",
"dist/*.js",
"css/*.css"
],
"homepage": "https://github.com/lux-org/lux-widget",
"bugs": {
"url": "https://github.com/lux-org/lux-widget/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Doris Jung-Lin Lee",
"email": "[email protected]"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/lux-org/lux-widget"
},
"scripts": {
"postinstall": "pip install . && jupyter nbextension install --sys-prefix --symlink --overwrite --py luxwidget && jupyter nbextension enable --sys-prefix --py luxwidget",
"build": "npm install; npm run build:lib && npm run build:nbextension",
"build:labextension": "npm run clean:labextension && mkdirp luxwidget/labextension && cd luxwidget/labextension && npm pack ../..",
"build:lib": "tsc",
"build:nbextension": "webpack -p",
"build:all": "npm run build:labextension && npm run build:nbextension",
"clean": "npm run clean:lib && npm run clean:nbextension",
"clean:lib": "rimraf lib",
"clean:labextension": "rimraf luxwidget/labextension",
"clean:nbextension": "rimraf luxwidget/nbextension/static/index.js",
"prepack": "npm run build:lib",
"watch": "npm-run-all -p watch:*",
"watch:lib": "tsc -w",
"watch:nbextension": "webpack --watch"
},
"dependencies": {
"@jupyter-widgets/base": "^1.1.10 || ^2 || ^3",
"@material-ui/core": "^4.11.0",
"@uiw/react-codemirror": "^3.0.6",
"bootstrap": "^4.4.1",
"codemirror": "^5.60.0",
"detect-libc": "^1.0.3",
"jquery": "^3.4.1",
"needle": "^2.4.0",
"nopt": "^4.0.1",
"prism-react-renderer": "^1.2.0",
"prismjs": "^1.23.0",
"rc": "^1.2.8",
"react": "^16.5.0",
"react-bootstrap": "^1.0.0-beta.16",
"react-codemirror2": "^7.2.1",
"react-contenteditable": "^3.3.5",
"react-dom": "^16.9.0",
"react-simple-code-editor": "^0.11.0",
"react-vega": "7.1.1",
"vega": "^5.9.0",
"vega-embed": "^6.2.1",
"vega-lite": "^4.0.2"
},
"devDependencies": {
"@babel/preset-react": "^7.7.4",
"@lumino/application": "^1.6.0",
"@lumino/widgets": "^1.8.0",
"@types/expect.js": "^0.3.29",
"@types/jquery": "^3.5.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.6",
"@types/prismjs": "^1.16.5",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/webpack-env": "^1.13.6",
"babel-cli": "^6.18.0",
"babel-core": "^6.26.3",
"css-loader": "^3.2.0",
"expect.js": "^0.3.1",
"fs-extra": "^7.0.0",
"mkdirp": "^0.5.1",
"mocha": "^8.3.2",
"npm-run-all": "^4.1.3",
"rimraf": "^3.0.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-loader": "^6.2.1",
"typescript": "^3.8",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"jupyterlab": {
"extension": "lib/plugin"
},
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}