autobrr/web/package.json
stacksmash76 cb8f280e86
refactor(web) add eslint (#222)
* fix(tsconfig.json): changed skipLibCheck to false.
refactor(eslint): moved configuration from package.json to .eslintrc.js and added a typescript plugin for future use

* feat: wip eslint and types

* feat: fix identation

* feat: get rid of last any types
2022-05-17 06:44:07 +02:00

75 lines
2.1 KiB
JSON

{
"name": "web",
"version": "0.1.0",
"private": true,
"homepage": ".",
"dependencies": {
"@fontsource/inter": "^4.5.4",
"@headlessui/react": "^1.2.0",
"@heroicons/react": "^1.0.1",
"date-fns": "^2.25.0",
"formik": "^2.2.9",
"react": "^17.0.2",
"react-cookie": "^4.1.1",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-hot-toast": "^2.1.1",
"react-multi-select-component": "4.2.5",
"react-query": "^3.18.1",
"react-ridge-state": "4.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.0",
"react-select": "5.0.0-beta.0",
"react-table": "^7.7.0",
"stacktracey": "^2.1.8",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "BROWSER=none react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx --color",
"lint:watch": "npm run lint -- --watch"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"overrides": {
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.4.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": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/react-table": "^7.7.7",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"autoprefixer": "^10.4.2",
"eslint": "^8.8.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-watch": "^8.0.0",
"http-proxy-middleware": "^2.0.6",
"postcss": "^8.4.6",
"tailwindcss": "^3.0.18",
"typescript": "^4.1.2"
}
}