Skip to content

Commit

Permalink
Merge branch 'main' into feat/#24
Browse files Browse the repository at this point in the history
  • Loading branch information
seungdeok committed Jan 5, 2025
2 parents 06d29c9 + 472c75d commit 75556fe
Show file tree
Hide file tree
Showing 4 changed files with 342 additions and 6 deletions.
1 change: 1 addition & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pnpm lint-staged
13 changes: 11 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"format": "prettier --write --cache .",
"generate": "openapi-generator-cli generate -g typescript-axios -i ./docs/api-doc.json -o ./src.shared/apis -c ./openapi.json",
"template": "openapi-generator-cli author template -g typescript-axios -o ./mustaches",
"generate:api": "openapi-generator-cli generate -g typescript-axios -i ./docs/api-doc.json -o ./src/shared/apis -t ./mustaches -c ./openapi.json --skip-validate-spec"
"generate:api": "openapi-generator-cli generate -g typescript-axios -i ./docs/api-doc.json -o ./src/shared/apis -t ./mustaches -c ./openapi.json --skip-validate-spec",
"postinstall": "husky install"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
Expand Down Expand Up @@ -53,6 +54,7 @@
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.5",
"react-native-error-boundary": "^1.2.7",
"react-native-gesture-handler": "~2.20.2",
"react-native-global-props": "^1.1.5",
"react-native-reanimated": "~3.16.1",
Expand All @@ -73,11 +75,18 @@
"eslint-config-expo": "~8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.2.1",
"jest-expo": "~52.0.2",
"lint-staged": "^15.3.0",
"prettier": "^3.4.1",
"react-test-renderer": "18.3.1",
"typescript": "^5.3.3"
},
"private": true
"private": true,
"lint-staged": {
"*.{ts,tsx}": [
"pnpm format"
]
}
}
Loading

0 comments on commit 75556fe

Please sign in to comment.