81 lines
2.9 KiB
JSON
81 lines
2.9 KiB
JSON
{
|
|
"name": "kubeflow-workspaces-frontend",
|
|
"version": "0.0.1",
|
|
"description": "The Kubeflow Workspaces Frontend is the web user interface used to monitor and manage Kubeflow Workspaces as part of Kubeflow Notebooks 2.0",
|
|
"repository": "https://github.com/kubeflow/notebooks.git",
|
|
"homepage": "https://github.com/kubeflow/notebooks",
|
|
"license": "Apache-2.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"prebuild": "npm run type-check && npm run clean",
|
|
"build": "webpack --config webpack.prod.js",
|
|
"start": "sirv dist --cors --single --host --port 8080",
|
|
"start:dev": "webpack serve --color --progress --config webpack.dev.js",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"eslint": "eslint --ext .tsx,.js ./src/",
|
|
"lint": "npm run eslint",
|
|
"format": "prettier --check --write ./src/**/*.{tsx,ts}",
|
|
"type-check": "tsc --noEmit",
|
|
"ci-checks": "npm run type-check && npm run lint && npm run test:coverage",
|
|
"build:bundle-profile": "webpack --config webpack.prod.js --profile --json > stats.json",
|
|
"bundle-profile:analyze": "npm run build:bundle-profile && webpack-bundle-analyzer ./stats.json",
|
|
"clean": "rimraf dist"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
"@testing-library/react": "^14.0.0",
|
|
"@testing-library/user-event": "14.4.3",
|
|
"@types/jest": "^29.5.3",
|
|
"@types/react-router-dom": "^5.3.3",
|
|
"@types/victory": "^33.1.5",
|
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
"@typescript-eslint/parser": "^6.21.0",
|
|
"copy-webpack-plugin": "^11.0.0",
|
|
"css-loader": "^6.11.0",
|
|
"css-minimizer-webpack-plugin": "^5.0.1",
|
|
"dotenv-webpack": "^8.0.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"eslint-plugin-react": "^7.34.2",
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
"html-webpack-plugin": "^5.6.0",
|
|
"imagemin": "^8.0.1",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"mini-css-extract-plugin": "^2.9.0",
|
|
"postcss": "^8.4.38",
|
|
"prettier": "^3.3.0",
|
|
"prop-types": "^15.8.1",
|
|
"raw-loader": "^4.0.2",
|
|
"react-axe": "^3.5.4",
|
|
"react-docgen-typescript-loader": "^3.7.2",
|
|
"react-router-dom": "^5.3.4",
|
|
"regenerator-runtime": "^0.13.11",
|
|
"rimraf": "^5.0.7",
|
|
"style-loader": "^3.3.4",
|
|
"svg-url-loader": "^8.0.0",
|
|
"terser-webpack-plugin": "^5.3.10",
|
|
"ts-jest": "^29.1.4",
|
|
"ts-loader": "^9.5.1",
|
|
"tsconfig-paths-webpack-plugin": "^4.1.0",
|
|
"tslib": "^2.6.0",
|
|
"typescript": "^5.4.5",
|
|
"url-loader": "^4.1.1",
|
|
"webpack": "^5.91.0",
|
|
"webpack-bundle-analyzer": "^4.10.2",
|
|
"webpack-cli": "^5.1.4",
|
|
"webpack-dev-server": "^4.15.2",
|
|
"webpack-merge": "^5.10.0"
|
|
},
|
|
"dependencies": {
|
|
"@patternfly/react-core": "6.0.0-alpha.68",
|
|
"@patternfly/react-icons": "6.0.0-alpha.24",
|
|
"@patternfly/react-styles": "6.0.0-alpha.24",
|
|
"react": "^18",
|
|
"react-dom": "^18",
|
|
"sirv-cli": "^2.0.2"
|
|
}
|
|
}
|