-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: override vercel dev typescript version
- Loading branch information
Showing
2 changed files
with
806 additions
and
401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
@@ -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", | ||
|
@@ -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", | ||
|
@@ -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", | ||
|
@@ -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": [ | ||
|
Oops, something went wrong.