mirror of
https://gitlab.com/psono/psono-admin-client
synced 2025-04-19 03:22:17 +03:00
107 lines
3.1 KiB
JSON
107 lines
3.1 KiB
JSON
{
|
|
"name": "psono-admin-client",
|
|
"version": "1.0.0",
|
|
"description": "Psono Admin Panel to manage users",
|
|
"main": "index.js",
|
|
"private": true,
|
|
"repository": "git@gitlab.com:psono/psono-admin-client.git",
|
|
"author": "Sascha Pfeiffer",
|
|
"license": "Apache-2.0",
|
|
"homepage": "/portal",
|
|
"dependencies": {
|
|
"@date-io/date-fns": "^2.4.0",
|
|
"@material-table/core": "^4.3.44",
|
|
"@material-ui/core": "^4.11.4",
|
|
"@material-ui/icons": "^4.11.2",
|
|
"@material-ui/lab": "^4.0.0-alpha.60",
|
|
"@material-ui/pickers": "^3.3.10",
|
|
"chartist": "^0.10.1",
|
|
"chartist-plugin-axistitle": "^0.0.4",
|
|
"classnames": "^2.2.6",
|
|
"clientjs": "^0.1.11",
|
|
"ecma-nacl": "^2.4.2",
|
|
"font-awesome": "^4.7.0",
|
|
"husky": "^9.1.7",
|
|
"i18next": "^21.4.0",
|
|
"i18next-browser-languagedetector": "^6.1.2",
|
|
"i18next-http-backend": "^1.3.2",
|
|
"js-sha256": "^0.9.0",
|
|
"js-sha512": "^0.8.0",
|
|
"lint-staged": "^15.5.0",
|
|
"moment": "^2.29.4",
|
|
"moment-timezone": "^0.5.34",
|
|
"perfect-scrollbar": "^1.3.0",
|
|
"react": "^17.0.2",
|
|
"react-chartist": "^0.14.4",
|
|
"react-dom": "^17.0.2",
|
|
"react-fontawesome": "^1.6.1",
|
|
"react-i18next": "^11.13.0",
|
|
"react-moment": "^1.1.2",
|
|
"react-redux": "^7.2.6",
|
|
"react-router-dom": "^5.3.4",
|
|
"react-spinners": "^0.13.3",
|
|
"react-timeout": "^1.0.1",
|
|
"redux": "^4.1.2",
|
|
"redux-logger": "^3.0.6",
|
|
"redux-persist": "^6.0.0",
|
|
"redux-thunk": "^2.3.0",
|
|
"uuid-js": "^0.7.5"
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.{js,jsx,json,css}": [
|
|
"prettier --single-quote --write --tab-width 4"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"start": "webpack serve --config webpack.dev.js",
|
|
"build": "webpack --config webpack.prod.js",
|
|
"test": "jest --detectOpenHandles --forceExit",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"prepare": "husky"
|
|
},
|
|
"browserslist": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not ie <= 11",
|
|
"not op_mini all"
|
|
],
|
|
"devDependencies": {
|
|
"@babel/core": "^7.22.5",
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
"@babel/plugin-transform-runtime": "^7.22.5",
|
|
"@babel/preset-env": "^7.22.5",
|
|
"@babel/preset-react": "^7.22.5",
|
|
"@babel/runtime": "^7.22.5",
|
|
"babel-jest": "^29.5.0",
|
|
"babel-loader": "^9.1.2",
|
|
"buffer": "^6.0.3",
|
|
"camelcase": "^7.0.1",
|
|
"clean-webpack-plugin": "^4.0.0",
|
|
"copy-webpack-plugin": "^11.0.0",
|
|
"css-loader": "^6.8.1",
|
|
"css-minimizer-webpack-plugin": "^5.0.1",
|
|
"html-webpack-plugin": "^5.5.3",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"interpolate-html-plugin": "^4.0.0",
|
|
"jest": "^29.5.0",
|
|
"jest-environment-jsdom": "^29.5.0",
|
|
"jest-watch-typeahead": "^2.2.2",
|
|
"mini-css-extract-plugin": "^2.7.6",
|
|
"path-browserify": "^1.0.1",
|
|
"prettier": "^2.6.2",
|
|
"process": "^0.11.10",
|
|
"react-app-polyfill": "^3.0.0",
|
|
"react-test-renderer": "^17.0.2",
|
|
"style-loader": "^3.3.3",
|
|
"terser-webpack-plugin": "^5.3.9",
|
|
"webpack": "^5.88.0",
|
|
"webpack-cli": "^5.1.4",
|
|
"webpack-dev-server": "^4.15.2",
|
|
"webpack-merge": "^5.9.0"
|
|
},
|
|
"browser": {
|
|
"crypto": false
|
|
}
|
|
}
|