mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-07 01:54:09 +00:00
80 lines
2.2 KiB
JSON
80 lines
2.2 KiB
JSON
{
|
|
"name": "jupyterhub-admin-react",
|
|
"version": "1.0.0",
|
|
"description": "React application for the Jupyter Hub admin dashboard service",
|
|
"main": "index.js",
|
|
"author": "nabarber",
|
|
"license": "BSD-3-Clause",
|
|
"scripts": {
|
|
"build": "webpack",
|
|
"build:watch": "webpack watch",
|
|
"hot": "webpack && webpack-dev-server",
|
|
"test": "jest --verbose",
|
|
"snap": "jest --updateSnapshot",
|
|
"lint": "eslint --ext .jsx --ext .js src/",
|
|
"lint:fix": "eslint --ext .jsx --ext .js src/ --fix"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"@babel/preset-env",
|
|
"@babel/preset-react"
|
|
],
|
|
"plugins": []
|
|
},
|
|
"jest": {
|
|
"fakeTimers": {
|
|
"enableGlobally": true
|
|
},
|
|
"moduleNameMapper": {
|
|
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
|
|
"\\.(css|less)$": "identity-obj-proxy"
|
|
},
|
|
"setupFiles": [
|
|
"./testing/setup.jest.js"
|
|
],
|
|
"testEnvironment": "jsdom"
|
|
},
|
|
"dependencies": {
|
|
"bootstrap": "^5.3.8",
|
|
"history": "^5.3.0",
|
|
"lodash": "^4.17.21",
|
|
"prop-types": "^15.8.1",
|
|
"react": "^19.1.1",
|
|
"react-bootstrap": "^2.10.10",
|
|
"react-dom": "^19.1.1",
|
|
"react-icons": "^5.5.0",
|
|
"react-redux": "^9.2.0",
|
|
"react-router": "^7.8.2",
|
|
"redux": "^5.0.1",
|
|
"regenerator-runtime": "^0.14.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.28.3",
|
|
"@babel/preset-env": "^7.28.3",
|
|
"@babel/preset-react": "^7.27.1",
|
|
"@eslint/eslintrc": "^3.3.1",
|
|
"@eslint/js": "^9.36.0",
|
|
"@testing-library/jest-dom": "^6.8.0",
|
|
"@testing-library/react": "^16.3.0",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@webpack-cli/serve": "^3.0.1",
|
|
"babel-jest": "^30.2.0",
|
|
"babel-loader": "^10.0.0",
|
|
"css-loader": "^7.1.2",
|
|
"eslint": "^9.36.0",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-unused-imports": "^4.2.0",
|
|
"file-loader": "^6.2.0",
|
|
"globals": "^16.4.0",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"jest": "^30.1.2",
|
|
"jest-environment-jsdom": "^30.2.0",
|
|
"prettier": "^3.6.2",
|
|
"style-loader": "^4.0.0",
|
|
"webpack": "^5.101.3",
|
|
"webpack-cli": "^6.0.1",
|
|
"webpack-dev-server": "^5.2.2"
|
|
}
|
|
}
|