-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
113 lines (113 loc) · 3.5 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
{
"name": "jupyterlab_tensorboard_pro",
"version": "4.0.0",
"description": "A JupyterLab extension for tensorboard.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"tensorboard"
],
"homepage": "https://github.com/HFAiLab/jupyterlab_tensorboard_pro",
"bugs": {
"url": "https://github.com/HFAiLab/jupyterlab_tensorboard_pro/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/HFAiLab/jupyterlab_tensorboard_pro"
},
"license": "MIT",
"author": {
"name": "aircloud",
"email": "[email protected]"
},
"sideEffects": [
"style/*.css",
"style/*.scss",
"style/index.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"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}",
"style/index.js"
],
"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 jupyterlab_tensorboard_pro/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:client": "jupyter labextension develop --overwrite .",
"install:server": "jupyter server extension enable jupyterlab_tensorboard_pro",
"prepare": "husky install && jlpm run clean && jlpm run build:prod",
"watch": "jlpm run build:lib && run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix",
"package.json": "sort-package-json"
},
"dependencies": {
"@blueprintjs/core": "^5.3.2",
"@blueprintjs/select": "^5.0.12",
"@jupyterlab/application": "^4.0.6",
"@jupyterlab/apputils": "^4.1.6",
"@jupyterlab/coreutils": "^6.0.6",
"@jupyterlab/filebrowser": "^4.0.6",
"@jupyterlab/launcher": "^4.0.6",
"@jupyterlab/mainmenu": "^4.0.6",
"@jupyterlab/running": "^4.0.6",
"@jupyterlab/services": "^7.0.6",
"@jupyterlab/ui-components": "^4.0.6",
"classnames": "^2.3.1",
"svg-url-loader": "~6.0.0"
},
"devDependencies": {
"@jupyterlab/builder": "^4.0.6",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"css-loader": "^5.0.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"raw-loader": "4.0.0",
"rimraf": "^3.0.2",
"sass": "^1.43.2",
"sass-loader": "^12.2.0",
"sort-package-json": "^1.57.0",
"style-loader": "~2.0.0",
"ts-loader": "^9.2.6",
"typescript": "^5.2.2",
"webpack": "*"
},
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab_tensorboard_pro"
}
}
},
"extension": true,
"outputDir": "jupyterlab_tensorboard_pro/labextension",
"webpackConfig": "./webpack.config.js"
},
"styleModule": "style/index.js"
}