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

113 lines
2.8 KiB
JSON

{
"name": "web",
"version": "1.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.2.1",
"@mui/material": "^5.8.2",
"@mui/styles": "^5.8.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"axios": "^0.21.1",
"i18next": "^19.9.1",
"i18next-browser-languagedetector": "^6.0.1",
"i18next-http-backend": "^1.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-dropzone": "^11.3.0",
"react-i18next": "^11.8.9",
"react-infinite-scroller": "^1.2.6",
"typescript": "^4.0.3",
"web-vitals": "^0.2.4",
"workbox-core": "^6.1.2",
"workbox-expiration": "^6.1.2",
"workbox-precaching": "^6.1.2",
"workbox-routing": "^6.1.2",
"workbox-strategies": "^6.1.2"
},
"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
}
]
}
},
"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.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"react-scripts": "^5.0.1"
}
}