* adding pilots page and drawer component * adding pilot page and pilot drawer
29 lines
757 B
JSON
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"
|
|
}
|
|
}
|