Files
noahspan-flying/package.json
noahspannbauer dd73d48ffd Feature/3 pilots page and drawer (#17)
* adding pilots page and drawer component

* adding pilot page and pilot drawer
2024-05-30 22:15:43 -05:00

29 lines
757 B
JSON

{
"name": "@noahspan/flying",
"version": "1.0.0",
"workspaces": [
"api",
"app",
"tests"
],
"scripts": {
"format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"",
"lint": "npm run lint -w api && npm run lint -w app",
"prepare": "husky || true"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5"
},
"lint-staged": {
"**/*": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\" --ignore-unknown"
}
}