Newer
Older
"name": "stackspin-dashboard",
"version": "0.1.1",
"@headlessui/tailwindcss": "^0.2.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@tanstack/match-sorter-utils": "^8.8.4",
"@tanstack/react-table": "^8.9.3",
"@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": "^18.0.0",
"@types/react-dom": "^17.0.2",
"node-polyfill-webpack-plugin": "^3.0.0",
"react": "17.0.2",
"redux": "^4.1.0",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"typescript": "^4.1.2",
"urlcat": "^2.0.4",
"web-vitals": "^1.0.1",
"start": "craco --openssl-legacy-provider start",
"build": "craco --openssl-legacy-provider build",
"test": "craco test",
"eject": "react-scripts eject",
"lint": "eslint ./src --cache --ext .js,.jsx,.ts,.tsx",
"lint-staged": "lint-staged"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"@types/react": "17.0.2",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"postcss": "^8.4.32",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.1.1",
"sass": "^1.36.0",
"tailwindcss": "^3.4.0"
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
},
"overrides": {
"eslint-config-react-app": {
"@typescript-eslint/eslint-plugin": "6.17.0"
}
},
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
"pre-commit": "lint-staged",
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --ext .ts,.tsx,.js --max-warnings=3 --fix-dry-run"
]
},
"eslintIgnore": [
".eslintrc.js"
],
"prettier": {
"overrides": [
{
"files": [
".prettierrc",
".babelrc",
".eslintrc"
],
"options": {
"parser": "json"
}
}
],
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": true,
"trailingComma": "all",
"endOfLine": "lf"
}
}