Skip to content

Commit

Permalink
fix: override vercel dev typescript version
Browse files Browse the repository at this point in the history
  • Loading branch information
dohaki committed Jan 15, 2025
1 parent 58fa06c commit d1eba3f
Show file tree
Hide file tree
Showing 2 changed files with 806 additions and 401 deletions.
15 changes: 10 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,12 @@
"react-router-dom": "v5",
"react-tooltip": "^5.18.0",
"superstruct": "^0.15.4",
"typescript": "^5.5.2"
"typescript": "^5.7.3"
},
"scripts": {
"start": "export REACT_APP_GIT_COMMIT_HASH=$(git rev-parse HEAD) && vite",
"dev": "export REACT_APP_GIT_COMMIT_HASH=$(git rev-parse HEAD) && vite --port $PORT --host",
"dev:api": "vercel dev --listen 127.0.0.1:3000",
"build": "yarn prebuild && export REACT_APP_GIT_COMMIT_HASH=$(git rev-parse HEAD) && tsc && vite build",
"prebuild": "tsx scripts/pre-build.ts",
"analyze": "yarn build && rollup-plugin-visualizer --open ./bundle-size-analysis.json",
Expand Down Expand Up @@ -134,7 +135,7 @@
"@types/react": "v18",
"@types/react-dom": "v18",
"@types/react-router-dom": "5.3.3",
"@vercel/node": "^2.5.13",
"@vercel/node": "^5.0.2",
"@vitejs/plugin-react": "^4.0.1",
"axios-mock-adapter": "^1.21.2",
"babel-cli": "^6.26.0",
Expand Down Expand Up @@ -162,9 +163,11 @@
"serve": "^14.0.1",
"storybook": "^7.5.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"tsx": "^4.15.6",
"typescript-eslint": "^7.13.1",
"vercel": "^39.3.0",
"vite": "^4.3.9",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-eslint": "^1.8.1",
Expand All @@ -181,8 +184,6 @@
}
},
"resolutions": {
"//": "See https://github.com/facebook/create-react-app/issues/11773 ",
"react-error-overlay": "6.0.9",
"babel-loader": "8.1.0",
"**/eccrypto/secp256k1": "3.8.1",
"**/eth-crypto/secp256k1": "5.0.1",
Expand All @@ -192,7 +193,11 @@
"overrides": {
"[email protected]": "3.8.1",
"[email protected]": "4.0.4",
"[email protected]": "5.0.1"
"[email protected]": "5.0.1",
"@vercel/node": {
"ts-node": "10.9.2",
"typescript": "5.7.3"
}
},
"eslintConfig": {
"overrides": [
Expand Down
Loading

0 comments on commit d1eba3f

Please sign in to comment.