Newer
Older
"name": "stackspin-dashboard",
"version": "0.1.1",
"private": true,
"dependencies": {
"@craco/craco": "^6.2.0",
"@headlessui/react": "^1.3.0",
"@heroicons/react": "^1.0.3",
"@hookform/resolvers": "^2.6.1",
"@tailwindcss/forms": "^0.3.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",
"lint-staged": "^11.1.1",
"lodash": "^4.17.21",
"prismjs": "^1.24.1",
"react": "17.0.2",
"react-scripts": "4.0.3",
"react-simple-code-editor": "^0.11.0",
"react-table": "^7.7.0",
"redux": "^4.1.0",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"typescript": "^4.1.2",
"urlcat": "^2.0.4",
"web-vitals": "^1.0.1",
"yup": "^0.32.9"
},
"scripts": {
"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": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/lodash": "^4.14.171",
"@types/prismjs": "^1.16.6",
"@types/react": "17.0.2",
"@types/react-table": "^7.7.2",
"autoprefixer": "^9",
"dotenv": "^10.0.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"postcss": "^7",
"pre-commit": "^1.2.2",
"prettier": "^2.3.2",
"sass": "^1.36.0"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
},
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
"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"
}
}