-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathpackage.json
147 lines (147 loc) · 4.83 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "jupyterlab-optuna",
"version": "0.2.2",
"description": "A JupyterLab extension for Optuna",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"optuna"
],
"homepage": "https://github.com/optuna/optuna-dashboard",
"bugs": {
"url": "https://github.com/optuna/optuna-dashboard/issues"
},
"license": "MIT",
"author": "Optuna Development Team",
"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/optuna/optuna-dashboard.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:labextension": "rimraf jupyterlab_optuna/labextension jupyterlab_optuna/_version.py",
"clean:all": "jlpm clean:lib && jlpm clean:labextension",
"install:extension": "jlpm build",
"lint": "jlpm prettier",
"lint:check": "jlpm prettier:check",
"prettier": "jlpm prettier:base --write --list-different",
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "jlpm prettier:base --check",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w --sourceMap",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@optuna/optuna-dashboard": "link:../optuna_dashboard"
},
"devDependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@jupyterlab/application": "^4.3.4",
"@jupyterlab/apputils": "^4.4.4",
"@jupyterlab/builder": "^4.0.0",
"@jupyterlab/coreutils": "^6.3.4",
"@jupyterlab/launcher": "^4.3.4",
"@jupyterlab/services": "^7.3.4",
"@mui/icons-material": "^6.1.1",
"@mui/lab": "^6.0.0-beta.10",
"@mui/material": "^6.1.1",
"@mui/system": "^6.1.1",
"@optuna/types": "link:../tslib/types",
"@react-three/drei": "^9.96.4",
"@react-three/fiber": "^8.15.15",
"@tanstack/react-query": "^5.18.1",
"@tanstack/react-table": "^8.17.3",
"@tanstack/react-virtual": "^3.1.2",
"@types/chroma-js": "^2.4.1",
"@types/json-schema": "^7.0.11",
"@types/plotly.js": "^2.12.11",
"@types/react": "18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.5",
"@types/signals": "^1.0.2",
"axios": "^1.7.4",
"css-loader": "^6.8.1",
"elkjs": "^0.9.1",
"mkdirp": "^1.0.3",
"ngl": "^2.1.1",
"notistack": "^3.0.1",
"npm-run-all": "^4.1.5",
"papaparse": "^5.4.1",
"plotly.js-dist-min": "^2.28.0",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.21.3",
"react-syntax-highlighter": "^15.5.0",
"reactflow": "^11.10.3",
"recoil": "^0.7.7",
"rehype-mathjax": "^6.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"rimraf": "^4.4.1",
"source-map-loader": "^1.0.2",
"style-loader": "^3.3.3",
"three": "^0.160.1",
"typescript": "~5.1.6",
"usehooks-ts": "^3.0.2",
"wavesurfer.js": "^7.7.0",
"yjs": "^13.5.0"
},
"resolutions": {
"@types/react": "18.3.3"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab_optuna"
}
}
},
"extension": true,
"outputDir": "jupyterlab_optuna/labextension"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"endOfLine": "auto",
"overrides": [
{
"files": "package.json",
"options": {
"tabWidth": 4
}
}
]
}
}