-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #398 from EpicsDAO/improve-doc
update Next.js 15.1, React 19 stable, stop to use __filename, Update Solana Web3.js
- Loading branch information
Showing
14 changed files
with
816 additions
and
8,111 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
}, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"dev": "next dev -p 4242", | ||
"dev": "next dev --turbopack -p 4242", | ||
"build": "next build", | ||
"postbuild": "next-sitemap", | ||
"start": "next start", | ||
|
@@ -27,24 +27,23 @@ | |
"@fortawesome/free-solid-svg-icons": "6.5.2", | ||
"@fortawesome/react-fontawesome": "0.2.2", | ||
"@glitchful-dev/sol-apy-sdk": "3.0.8", | ||
"@radix-ui/react-aspect-ratio": "1.1.0", | ||
"@radix-ui/react-avatar": "1.0.4", | ||
"@radix-ui/react-dialog": "1.0.5", | ||
"@radix-ui/react-dropdown-menu": "2.0.6", | ||
"@radix-ui/react-icons": "1.3.0", | ||
"@radix-ui/react-label": "2.0.2", | ||
"@radix-ui/react-aspect-ratio": "1.1.1", | ||
"@radix-ui/react-avatar": "1.1.2", | ||
"@radix-ui/react-dialog": "1.1.4", | ||
"@radix-ui/react-dropdown-menu": "2.1.4", | ||
"@radix-ui/react-icons": "1.3.2", | ||
"@radix-ui/react-label": "2.1.1", | ||
"@radix-ui/react-progress": "1.1.0", | ||
"@radix-ui/react-slot": "1.0.2", | ||
"@radix-ui/react-tabs": "1.1.1", | ||
"@radix-ui/react-toast": "1.1.5", | ||
"@react-spring/web": "9.7.4", | ||
"@radix-ui/react-slot": "1.1.1", | ||
"@radix-ui/react-tabs": "1.1.2", | ||
"@radix-ui/react-toast": "1.2.4", | ||
"@solana/spl-stake-pool": "1.1.0", | ||
"@solana/wallet-adapter-base": "0.9.23", | ||
"@solana/wallet-adapter-react": "0.15.35", | ||
"@solana/wallet-adapter-react-ui": "0.9.35", | ||
"@solana/wallet-standard-features": "1.2.0", | ||
"@solana/wallet-standard-util": "1.1.1", | ||
"@solana/web3.js": "1.95.4", | ||
"@solana/web3.js": "1.98.0", | ||
"class-variance-authority": "0.7.0", | ||
"clsx": "2.1.1", | ||
"date-fns": "4.1.0", | ||
|
@@ -54,11 +53,11 @@ | |
"jotai": "2.10.1", | ||
"lodash.throttle": "4.1.1", | ||
"mdast-util-to-string": "4.0.0", | ||
"next": "15.0.3", | ||
"next-intl": "3.25.0", | ||
"next-themes": "0.3.0", | ||
"react": "19.0.0-rc-66855b96-20241106", | ||
"react-dom": "19.0.0-rc-66855b96-20241106", | ||
"next": "15.1.3", | ||
"next-intl": "3.26.3", | ||
"next-themes": "0.4.4", | ||
"react": "19.0.0", | ||
"react-dom": "19.0.0", | ||
"react-markdown": "9.0.1", | ||
"react-syntax-highlighter": "15.6.1", | ||
"remark": "15.0.1", | ||
|
@@ -71,13 +70,13 @@ | |
"@tailwindcss/typography": "0.5.14", | ||
"@types/lodash.throttle": "4.1.9", | ||
"@types/node": "20.13.0", | ||
"@types/react": "npm:types-react@19.0.0-rc.1", | ||
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1", | ||
"@types/react": "19.0.2", | ||
"@types/react-dom": "19.0.2", | ||
"@types/react-syntax-highlighter": "15.5.13", | ||
"autoprefixer": "10.4.19", | ||
"babel-plugin-react-compiler": "19.0.0-beta-63b359f-20241101", | ||
"babel-plugin-react-compiler": "19.0.0-beta-b2e8e9c-20241220", | ||
"eslint": "9.14.0", | ||
"eslint-config-next": "15.0.3", | ||
"eslint-config-next": "15.1.3", | ||
"eslint-config-prettier": "9.1.0", | ||
"glob": "10.4.3", | ||
"gray-matter": "4.0.3", | ||
|
@@ -93,9 +92,5 @@ | |
"typescript": "5.6.3", | ||
"unified": "11.0.5", | ||
"wrangler": "3.86.0" | ||
}, | ||
"peerDependencies": { | ||
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0", | ||
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0" | ||
} | ||
} |
Oops, something went wrong.