-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
118 lines (118 loc) · 3.42 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
115
116
117
118
{
"name": "luxwidget",
"version": "0.1.11",
"description": "A Custom Jupyter Widget Library",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"webpack.config.js",
"tsconfig.json",
"luxwidget/*.py",
"luxwidget/nbextension/static/*",
"luxwidget/labextension/static/*",
"luxwidget/labextension/package.json",
"*.py",
"src/*.tsx",
"src/*.ts",
"lib/**/*.js",
"lib/**/*.ts",
"dist/*.js",
"style/index.js",
"style/*.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": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf {{ cookiecutter.python_name }}/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jupyter labextension develop --overwrite .",
"prepare": "jlpm run clean && jlpm run build:prod",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyter-widgets/base": "^3 || ^4.0.0",
"@material-ui/core": "^4.11.0",
"bootstrap": "^4.4.1",
"detect-libc": "^1.0.3",
"jquery": "^3.4.1",
"needle": "^2.4.0",
"nopt": "^4.0.1",
"rc": "^1.2.8",
"react": "^17.0.1",
"react-bootstrap": "^1.0.0-beta.16",
"react-dom": "^17.0.1",
"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",
"@jupyterlab/builder": "^3.0.0",
"@lumino/application": "^1.13.1",
"@lumino/widgets": "^1.16.1",
"@types/expect.js": "^0.3.29",
"@types/jquery": "^3.5.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.6",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/webpack-env": "^1.13.6",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"css-loader": "^3.2.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"expect.js": "^0.3.1",
"fs-extra": "^7.0.0",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-loader": "^6.2.1",
"typescript": "~4.1.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"jupyterlab": {
"extension": "lib/plugin",
"outputDir": "luxwidget/labextension"
},
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"styleModule": "style/index.js"
}