-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.2 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
{
"name": "dash_lumino_components",
"version": "0.0.20",
"description": "Lumino (JupyterLab) components for Plotly Dash",
"repository": {
"type": "git",
"url": "git://github.com/VK/dash-lumino-components.git"
},
"bugs": {
"url": "https://github.com/VK/dash-lumino-components/issues"
},
"homepage": "https://github.com/VK/dash-lumino-components",
"main": "build/index.js",
"scripts": {
"start": "webpack serve --config ./webpack.serve.config.js --open",
"validate-init": "python _validate_init.py",
"prepublishOnly": "npm run validate-init",
"build:js": "webpack --mode production",
"build:py_and_r": "dash-generate-components ./src/lib/components dash_lumino_components -p package-info.json --r-prefix dlc --jl-prefix dlc",
"build:py_and_r-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:py_and_r)",
"build": "npm run build:js && npm run build:py_and_r",
"build:activated": "npm run build:js && npm run build:py_and_r-activated",
"doc": "jsdoc -c ./jsdoc.conf.json"
},
"author": "Viktor Krückl <viktor@krueckl.de>",
"license": "MIT",
"dependencies": {
"@lumino/commands": "^1.11.4",
"@lumino/default-theme": "^0.5.1",
"@lumino/dragdrop": "^1.6.4",
"@lumino/messaging": "^1.4.3",
"@lumino/widgets": "^1.14.1",
"es6-promise": "^4.0.5",
"ramda": "^0.27.2"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.4",
"@babel/plugin-proposal-object-rest-spread": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"clean-jsdoc-theme": "^4.3.0",
"copyfiles": "^2.4.1",
"css-loader": "^6.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-react": "^7.24.0",
"file-loader": "^6.2.0",
"jsdoc": "^4.0.4",
"npm": "^10.9.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-docgen": "^5.3.0",
"react-dom": "^17.0.2",
"style-loader": "^3.2.1",
"styled-jsx": "^5.1.6",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"webpack-serve": "^3.1.0"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
}
}