mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-07 17:10:07 +08:00
51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
{
|
|
"name": "optuna-dashboard",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"description": "Dashboard for Optuna",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"fmt": "prettier --write \"optuna_dashboard/static/**/*.{ts,tsx}\" \"frontend_tests/*.{ts,tsx}\"",
|
|
"lint": "eslint . --ext .ts,.tsx && prettier --list-different \"optuna_dashboard/static/**/*.{ts,tsx}\" \"frontend_tests/*.{ts,tsx}\"",
|
|
"watch": "webpack --watch",
|
|
"build": "webpack",
|
|
"build:dev": "NODE_ENV=development webpack",
|
|
"build:prd": "NODE_ENV=production webpack",
|
|
"test": "jest frontend_tests"
|
|
},
|
|
"author": "Masashi Shibata",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@material-ui/core": "^4.11.4",
|
|
"@material-ui/icons": "^4.11.2",
|
|
"axios": "^0.21.1",
|
|
"notistack": "^1.0.9",
|
|
"plotly.js-dist": "^2.0.0",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-router-dom": "^5.2.0",
|
|
"recoil": "^0.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.14.3",
|
|
"@babel/preset-env": "^7.14.5",
|
|
"@testing-library/react": "^12.0.0",
|
|
"@types/jest": "^26.0.23",
|
|
"@types/plotly.js": "^1.54.10",
|
|
"@types/react": "^17.0.9",
|
|
"@types/react-dom": "^17.0.6",
|
|
"@types/react-router-dom": "^5.1.7",
|
|
"@typescript-eslint/eslint-plugin": "^4.26.1",
|
|
"@typescript-eslint/parser": "^4.26.1",
|
|
"eslint": "^7.28.0",
|
|
"jest": "^27.0.4",
|
|
"jest-canvas-mock": "^2.3.1",
|
|
"prettier": "^2.3.1",
|
|
"ts-jest": "^27.0.3",
|
|
"ts-loader": "^8.3.0",
|
|
"typescript": "^4.3.2",
|
|
"webpack": "^5.38.1",
|
|
"webpack-cli": "^4.7.2"
|
|
}
|
|
}
|