Skip to content

Commit

Permalink
Merge pull request #408 from swiiny/feat/packages
Browse files Browse the repository at this point in the history
Feat/packages
  • Loading branch information
swiiny authored Oct 16, 2024
2 parents d15e85f + 264e583 commit 80babf6
Show file tree
Hide file tree
Showing 22 changed files with 113 additions and 113 deletions.
2 changes: 1 addition & 1 deletion packages/base/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
26 changes: 13 additions & 13 deletions packages/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-nextjs-dapp-base",
"version": "1.1.2",
"version": "1.1.3",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -10,24 +10,24 @@
},
"dependencies": {
"classnames": "^2.5.1",
"ethers": "^6.13.1",
"next": "14.2.5",
"ethers": "^6.13.4",
"next": "14.2.15",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.2.1",
"sass": "^1.77.8",
"@web3-onboard/core": "^2.22.2",
"react-icons": "^5.3.0",
"sass": "^1.79.5",
"@web3-onboard/core": "^2.22.3",
"@web3-onboard/frame": "^2.1.1",
"@web3-onboard/injected-wallets": "^2.11.1",
"@web3-onboard/injected-wallets": "^2.11.2",
"@web3-onboard/walletconnect": "^2.6.1"
},
"devDependencies": {
"@types/node": "20.14.11",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"prettier": "3.3.3",
"typescript": "5.5.3"
"typescript": "5.6.3"
}
}
2 changes: 1 addition & 1 deletion packages/base/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const CreateNextjsDapp = ({ Component, pageProps }: AppProps) => {
<link rel='apple-touch-icon' href='/icon.png'></link>

<meta name='application-name' content='Create Nextjs Dapp' />
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta name='mobile-web-app-capable' content='yes' />
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
<meta name='apple-mobile-web-app-title' content='Create Nextjs Dapp' />
<meta
Expand Down
6 changes: 3 additions & 3 deletions packages/base/pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Html, Head, Main, NextScript } from 'next/document';
import { Head, Html, Main, NextScript } from 'next/document';

export default function CreateNextjsDappDocument() {
return (
<Html lang='en'>
<Head>
<link href='https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap' rel='stylesheet' />
<meta name='application-name' content='Create NextJs Dapp' />
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta name='mobile-web-app-capable' content='yes' />
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
<meta name='apple-mobile-web-app-title' content='Create NextJs Dapp' />
<meta
Expand All @@ -20,4 +20,4 @@ export default function CreateNextjsDappDocument() {
</body>
</Html>
);
}
}
2 changes: 1 addition & 1 deletion packages/example/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
22 changes: 11 additions & 11 deletions packages/example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-nextjs-dapp-example",
"version": "8.1.2",
"version": "1.3.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -9,23 +9,23 @@
"lint": "next lint"
},
"dependencies": {
"ethers": "^6.13.1",
"next": "14.2.5",
"ethers": "^6.13.4",
"next": "14.2.15",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.2.1",
"@web3-onboard/core": "^2.22.2",
"react-icons": "^5.3.0",
"@web3-onboard/core": "^2.22.3",
"@web3-onboard/frame": "^2.1.1",
"@web3-onboard/injected-wallets": "^2.11.1",
"@web3-onboard/injected-wallets": "^2.11.2",
"@web3-onboard/walletconnect": "^2.6.1"
},
"devDependencies": {
"@types/node": "20.14.11",
"@types/react": "18.3.3",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"prettier": "3.3.3",
"typescript": "5.5.3"
"typescript": "5.5.4"
}
}
2 changes: 1 addition & 1 deletion packages/example/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const CreateNextjsDapp = ({ Component, pageProps }: AppProps) => {
<link rel='apple-touch-icon' href='/icon.png'></link>

<meta name='application-name' content='Create Nextjs Dapp' />
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta name='mobile-web-app-capable' content='yes' />
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
<meta name='apple-mobile-web-app-title' content='Create Nextjs Dapp' />
<meta
Expand Down
2 changes: 1 addition & 1 deletion packages/example/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default function CreateNextjsDappDocument() {
<Head>
<link href='https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap' rel='stylesheet' />
<meta name='application-name' content='Create NextJs Dapp' />
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta name='mobile-web-app-capable' content='yes' />
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
<meta name='apple-mobile-web-app-title' content='Create NextJs Dapp' />
<meta
Expand Down
2 changes: 1 addition & 1 deletion packages/mui/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
32 changes: 16 additions & 16 deletions packages/mui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-nextjs-dapp-mui",
"version": "1.1.2",
"version": "1.1.4",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -9,29 +9,29 @@
"lint": "next lint"
},
"dependencies": {
"@mui/base": "5.0.0-beta.27",
"@mui/styled-engine-sc": "^5.14.12",
"@mui/system": "^5.16.4",
"ethers": "^6.13.1",
"next": "14.2.5",
"@mui/base": "5.0.0-beta.59",
"@mui/styled-engine-sc": "^6.1.4",
"@mui/system": "^6.1.4",
"ethers": "^6.13.4",
"next": "14.2.15",
"next-transpile-modules": "^10.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.2.1",
"styled-components": "5.3.11",
"@web3-onboard/core": "^2.22.2",
"react-icons": "^5.3.0",
"styled-components": "6.1.13",
"@web3-onboard/core": "^2.22.3",
"@web3-onboard/frame": "^2.1.1",
"@web3-onboard/injected-wallets": "^2.11.1",
"@web3-onboard/injected-wallets": "^2.11.2",
"@web3-onboard/walletconnect": "^2.6.1"
},
"devDependencies": {
"@types/node": "20.14.11",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@types/styled-components": "^5.1.34",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"prettier": "3.3.3",
"typescript": "5.5.3"
"typescript": "5.6.3"
}
}
2 changes: 1 addition & 1 deletion packages/mui/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const CreateNextjsDapp = ({ Component, pageProps }: AppProps) => {
<link rel='apple-touch-icon' href='/icon.png'></link>

<meta name='application-name' content='Create Nextjs Dapp' />
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta name='mobile-web-app-capable' content='yes' />
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
<meta name='apple-mobile-web-app-title' content='Create Nextjs Dapp' />
<meta
Expand Down
4 changes: 2 additions & 2 deletions packages/mui/pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Document, { Html, Head, Main, NextScript } from 'next/document';
import Document, { Head, Html, Main, NextScript } from 'next/document';
import { ServerStyleSheet } from 'styled-components';

export default function CreateNextjsDappDocument() {
Expand All @@ -7,7 +7,7 @@ export default function CreateNextjsDappDocument() {
<Head>
<link href='https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap' rel='stylesheet' />
<meta name='application-name' content='Create NextJs Dapp' />
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta name='mobile-web-app-capable' content='yes' />
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
<meta name='apple-mobile-web-app-title' content='Create NextJs Dapp' />
<meta
Expand Down
2 changes: 1 addition & 1 deletion packages/styled-components/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
26 changes: 13 additions & 13 deletions packages/styled-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-nextjs-dapp-styled-components",
"version": "1.2.4",
"version": "1.2.5",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -10,26 +10,26 @@
},
"dependencies": {
"@vercel/analytics": "^1.3.1",
"@web3-onboard/core": "^2.22.2",
"@web3-onboard/core": "^2.22.3",
"@web3-onboard/frame": "^2.1.1",
"@web3-onboard/injected-wallets": "^2.11.1",
"@web3-onboard/injected-wallets": "^2.11.2",
"@web3-onboard/walletconnect": "^2.6.1",
"ethers": "^6.13.1",
"next": "14.2.5",
"ethers": "^6.13.4",
"next": "14.2.15",
"next-transpile-modules": "^10.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.2.1",
"styled-components": "^6.1.12"
"react-icons": "^5.3.0",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@types/styled-components": "^5.1.34",
"@types/node": "20.14.11",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"prettier": "3.3.3",
"typescript": "5.5.3"
"typescript": "5.6.3"
}
}
2 changes: 1 addition & 1 deletion packages/styled-components/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const CreateNextjsDapp = ({ Component, pageProps }: AppProps) => {
<link rel='apple-touch-icon' href='/icon.png'></link>

<meta name='application-name' content='Create Nextjs Dapp' />
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta name='mobile-web-app-capable' content='yes' />
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
<meta name='apple-mobile-web-app-title' content='Create Nextjs Dapp' />
<meta
Expand Down
2 changes: 1 addition & 1 deletion packages/styled-components/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function CreateNextjsDappDocument() {
<Head>
<link href='https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap' rel='stylesheet' />
<meta name='application-name' content='Create NextJs Dapp' />
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta name='mobile-web-app-capable' content='yes' />
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
<meta name='apple-mobile-web-app-title' content='Create NextJs Dapp' />
<meta
Expand Down
2 changes: 1 addition & 1 deletion packages/stylex/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
46 changes: 23 additions & 23 deletions packages/stylex/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-nextjs-dapp-stylex",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"scripts": {
"predev": "rimraf .next",
Expand All @@ -10,36 +10,36 @@
"lint": "next lint"
},
"dependencies": {
"@babel/runtime": "^7.24.8",
"@stylexjs/open-props": "^0.7.5",
"@stylexjs/stylex": "^0.7.5",
"@web3-onboard/core": "^2.22.2",
"@babel/runtime": "^7.25.7",
"@stylexjs/open-props": "^0.8.0",
"@stylexjs/stylex": "^0.8.0",
"@web3-onboard/core": "^2.22.3",
"@web3-onboard/frame": "^2.1.1",
"@web3-onboard/injected-wallets": "^2.11.1",
"@web3-onboard/injected-wallets": "^2.11.2",
"@web3-onboard/walletconnect": "^2.6.1",
"classnames": "^2.5.1",
"ethers": "^6.13.1",
"next": "14.2.5",
"ethers": "^6.13.4",
"next": "14.2.15",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.2.1"
"react-icons": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/plugin-syntax-flow": "^7.24.7",
"@babel/plugin-syntax-jsx": "^7.24.7",
"@babel/plugin-syntax-typescript": "^7.24.7",
"@babel/plugin-transform-private-methods": "^7.24.7",
"@stylexjs/babel-plugin": "^0.7.5",
"@stylexjs/eslint-plugin": "^0.7.5",
"@stylexjs/nextjs-plugin": "^0.7.5",
"@types/node": "20.14.11",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"@babel/core": "^7.25.8",
"@babel/plugin-syntax-flow": "^7.25.7",
"@babel/plugin-syntax-jsx": "^7.25.7",
"@babel/plugin-syntax-typescript": "^7.25.7",
"@babel/plugin-transform-private-methods": "^7.25.7",
"@stylexjs/babel-plugin": "^0.8.0",
"@stylexjs/eslint-plugin": "^0.8.0",
"@stylexjs/nextjs-plugin": "^0.8.0",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"typescript": "5.5.3"
"typescript": "5.6.3"
}
}
2 changes: 1 addition & 1 deletion packages/tailwind/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
Loading

0 comments on commit 80babf6

Please sign in to comment.