-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.97 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
{
"name": "maap_algorithms_jupyter_extension",
"version": "0.3.8",
"description": "A JupyterLab extension for managing algorithms on the MAAP",
"keywords": [
"algorithm",
"registration",
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/MAAP-Project/algorithms-jupyter-extension.git",
"bugs": {
"url": "https://github.com/MAAP-Project/algorithms_jupyter_extension/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Marjorie Lucas",
"email": "[email protected]"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/MAAP-Project/algorithms_jupyter_extension.git"
},
"scripts": {
"build": "jlpm build:lib && jlpm build:labextension:dev",
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc --sourceMap",
"build:lib:prod": "tsc",
"clean": "jlpm clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:node": "rimraf node_modules package-lock.json",
"clean:labextension": "rimraf maap_algorithms_jupyter_extension/labextension maap_algorithms_jupyter_extension/_version.py",
"clean:all": "jlpm clean:lib && jlpm clean:labextension",
"install:extension": "jlpm build",
"start": "jupyter lab --config tests/jupyter_server_test_config.py",
"test": "jlpm playwright test",
"test:ui": "jlpm playwright test --ui",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlab/application": "^4.1.8",
"@jupyterlab/apputils": "^4.1.8",
"@jupyterlab/galata": "^5.2.0",
"@jupyterlab/launcher": "^4.1.8",
"@jupyterlab/mainmenu": "^4.1.8",
"@playwright/test": "^1.44.0",
"@reduxjs/toolkit": "^1.9.3",
"@types/js-yaml": "^4.0.5",
"bootstrap": "^5.2.0",
"js-yaml": "^4.1.0",
"react": "^17.0.2",
"react-bootstrap": "~2.10.2",
"react-dom": "^17.0.2",
"react-icons": "^4.8.0",
"react-redux": "^8.0.2",
"react-select": "^5.7.3",
"react-split-pane": "^2.0.0",
"react-table": "^7.8.0",
"react-tooltip": "^5.13.1"
},
"devDependencies": {
"@jupyterlab/builder": "^4.1.8",
"@types/react-table": "^7.7.20",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "~5.4.2"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"outputDir": "maap_algorithms_jupyter_extension/labextension"
}
}