forked from optuna/optuna-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "goptuna-dashboard",
"private": true,
"version": "0.0.1",
"description": "Dashboard for Goptuna",
"main": "index.js",
"scripts": {
"fmt": "prettier --write \"optuna_dashboard/static/**/*.{ts,tsx}\"",
"lint": "eslint . --ext .ts,.tsx && prettier --list-different \"optuna_dashboard/static/**/*.{ts,tsx}\"",
"watch": "webpack --watch",
"build": "webpack",
"build:dev": "NODE_ENV=development webpack",
"build:prd": "NODE_ENV=production webpack"
},
"author": "Masashi Shibata",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"axios": "^0.21.1",
"notistack": "^1.0.1",
"plotly.js-dist": "^1.57.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.2.0",
"recoil": "0.0.13"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@types/plotly.js": "^1.50.22",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"prettier": "^2.1.2",
"ts-loader": "^8.0.6",
"typescript": "^4.1.4",
"webpack": "^5.1.3",
"webpack-cli": "^4.1.0"
}
}