personal-gallery-node/packages/web/package.json

121 lines
3.0 KiB
JSON

{
"name": "web",
"version": "1.2.1",
"private": true,
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@mui/material": "^5.11.5",
"@mui/styles": "^5.11.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.24",
"@types/node": "^12.20.55",
"@types/react": "^16.14.35",
"@types/react-dom": "^16.9.17",
"axios": "^0.21.4",
"i18next": "^19.9.2",
"i18next-browser-languagedetector": "^6.1.8",
"i18next-http-backend": "^1.4.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.7.1",
"react-i18next": "^11.18.6",
"react-infinite-scroller": "^1.2.6",
"typescript": "^4.9.4",
"web-vitals": "^0.2.4",
"workbox-core": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"proxy": "http://localhost:3001",
"eslintConfig": {
"extends": [
"react-app",
"airbnb",
"airbnb-typescript",
"airbnb/hooks",
"plugin:jsx-a11y/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"plugins": [
"jsx-a11y"
],
"parserOptions": {
"project": "./tsconfig.json",
"includes": [
"./packages/web/**/*.{js,jsx,ts,tsx}"
]
},
"rules": {
"react/require-default-props": "off",
"no-warning-comments": [
"warn",
{
"terms": [
"todo",
"fixme"
],
"location": "anywhere"
}
],
"linebreak-style": 0,
"no-void": [
"error",
{
"allowAsStatement": true
}
],
"@typescript-eslint/no-misused-promises": [
"error",
{
"checksVoidReturn": false
}
],
"react/no-unknown-property": [
"error",
{
"ignore": [
"css"
]
}
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react-infinite-scroller": "^1.2.3",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"react-scripts": "^5.0.1"
}
}