mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-28 08:38:12 -05:00
122 lines
3.1 KiB
JSON
122 lines
3.1 KiB
JSON
{
|
|
"name": "identifier",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"homepage": ".",
|
|
"dependencies": {
|
|
"@fontsource/roboto": "^4.5.8",
|
|
"@material-ui/core": "^4.12.4",
|
|
"@material-ui/icons": "^4.11.3",
|
|
"axios": "^0.22.0",
|
|
"classnames": "^2.3.2",
|
|
"glob": "^8.1.0",
|
|
"i18next": "^21.10.0",
|
|
"i18next-browser-languagedetector": "^6.1.8",
|
|
"i18next-http-backend": "^1.4.5",
|
|
"i18next-resources-to-backend": "^1.0.0",
|
|
"query-string": "^7.1.3",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-i18next": "^11.18.6",
|
|
"react-redux": "^7.2.9",
|
|
"react-router": "^5.3.4",
|
|
"react-router-dom": "5.3.4",
|
|
"redux": "^4.2.1",
|
|
"redux-logger": "^3.0.6",
|
|
"redux-thunk": "^2.4.2",
|
|
"render-if": "^0.1.1",
|
|
"validator": "^13.12.0",
|
|
"web-vitals": "^1.1.2"
|
|
},
|
|
"scripts": {
|
|
"start": "vite",
|
|
"build": "vite build",
|
|
"serve": "vite preview",
|
|
"test": "vitest",
|
|
"lint": "eslint --max-warnings=0 src/**/*.{ts,tsx,js,jsx}",
|
|
"licenses": "node ../scripts/js-license-ranger.mjs",
|
|
"analyze": "source-map-explorer 'build/static/assets/*.js'"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/dom": "^8.20.1",
|
|
"@testing-library/jest-dom": "^6.1.4",
|
|
"@testing-library/react": "^12.1.5",
|
|
"@testing-library/user-event": "^12.8.3",
|
|
"@types/jest": "^29.5.8",
|
|
"@types/node": "^20.9.0",
|
|
"@types/react": "^17.0.70",
|
|
"@types/react-dom": "^17.0.23",
|
|
"@types/react-redux": "^7.1.25",
|
|
"@types/redux-logger": "^3.0.12",
|
|
"@types/validator": "^13",
|
|
"@typescript-eslint/eslint-plugin": "^6.11.0",
|
|
"@typescript-eslint/parser": "^6.9.0",
|
|
"@typescript-eslint/typescript-estree": "^6.11.0",
|
|
"@vitejs/plugin-legacy": "^4.0.0",
|
|
"@vitejs/plugin-react": "^4.1.1",
|
|
"cldr": "^7.4.0",
|
|
"eslint": "^8.53.0",
|
|
"eslint-config-react-app-bump": "^1.0.16",
|
|
"eslint-plugin-i18next": "^5.2.1",
|
|
"i18next-conv": "^12.1.1",
|
|
"i18next-parser": "^5.4.0",
|
|
"if-node-version": "^1.1.1",
|
|
"jsdom": "^22.1.0",
|
|
"source-map-explorer": "^2.5.3",
|
|
"terser": "^5.30.4",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^4.5.13",
|
|
"vite-plugin-checker": "^0.6.2",
|
|
"vite-plugin-eslint": "^1.8.1",
|
|
"vitest": "^0.34.6"
|
|
},
|
|
"jest": {
|
|
"collectCoverageFrom": [
|
|
"src/**/*.{js,jsx,ts,tsx}"
|
|
]
|
|
},
|
|
"eslintConfig": {
|
|
"plugins": [
|
|
"i18next"
|
|
],
|
|
"extends": [
|
|
"react-app-bump",
|
|
"plugin:react/recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:i18next/recommended"
|
|
],
|
|
"rules": {
|
|
"no-unused-vars": "off",
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"error"
|
|
],
|
|
"no-use-before-define": "off",
|
|
"@typescript-eslint/no-use-before-define": [
|
|
"error"
|
|
],
|
|
"i18next/no-literal-string": [
|
|
"off",
|
|
{
|
|
"markupOnly": true
|
|
}
|
|
],
|
|
"react/prop-types": [
|
|
"warn"
|
|
]
|
|
}
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"packageManager": "yarn@4.0.2"
|
|
}
|