Skip to content

Commit

Permalink
init connect four
Browse files Browse the repository at this point in the history
  • Loading branch information
SneakySensei committed Sep 4, 2024
1 parent 3d0994f commit 4f1568b
Show file tree
Hide file tree
Showing 7 changed files with 599 additions and 62 deletions.
103 changes: 52 additions & 51 deletions packages/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,53 +1,54 @@
{
"name": "ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"types:database": "node ./scripts/generate-supabase-types.js"
},
"dependencies": {
"@ethsign/sp-sdk": "^0.7.2",
"@radix-ui/react-dialog": "^1.1.1",
"@tsparticles/engine": "^3.5.0",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.5.0",
"@web3auth/base": "^8.12.4",
"@web3auth/ethereum-provider": "^8.12.4",
"@web3auth/modal": "^8.12.7",
"@web3auth/modal-react-hooks": "^8.13.0",
"@web3auth/wallet-services-plugin": "^8.12.5",
"clsx": "^2.1.1",
"common": "workspace:*",
"ethers": "^6.13.2",
"framer-motion": "^11.3.31",
"next": "14.2.7",
"next-cloudinary": "^6.11.0",
"react": "^18",
"react-dom": "^18",
"react-lottie": "^1.2.4",
"sharp": "^0.33.5",
"socket.io-client": "^4.7.5",
"sp-sdk": "link:@types/@ethsign/sp-sdk",
"tailwind-merge": "^2.5.2",
"vaul": "^0.9.1",
"viem": "^2.21.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-lottie": "^1.2.10",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"postcss": "^8",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
"name": "ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently -n NEXT,TSC --prefix-colors gray,blue \"next dev\" \"tsc --noEmit --watch\" --kill-others",
"build": "next build",
"start": "next start",
"lint": "next lint",
"types:database": "node ./scripts/generate-supabase-types.js"
},
"dependencies": {
"@ethsign/sp-sdk": "^0.7.2",
"@radix-ui/react-dialog": "^1.1.1",
"@tsparticles/engine": "^3.5.0",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.5.0",
"@web3auth/base": "^8.12.4",
"@web3auth/ethereum-provider": "^8.12.4",
"@web3auth/modal": "^8.12.7",
"@web3auth/modal-react-hooks": "^8.13.0",
"@web3auth/wallet-services-plugin": "^8.12.5",
"clsx": "^2.1.1",
"common": "workspace:*",
"ethers": "^6.13.2",
"framer-motion": "^11.3.31",
"next": "14.2.7",
"next-cloudinary": "^6.11.0",
"react": "^18",
"react-dom": "^18",
"react-lottie": "^1.2.4",
"sharp": "^0.33.5",
"socket.io-client": "^4.7.5",
"sp-sdk": "link:@types/@ethsign/sp-sdk",
"tailwind-merge": "^2.5.2",
"vaul": "^0.9.1",
"viem": "^2.21.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-lottie": "^1.2.10",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"postcss": "^8",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}
Loading

0 comments on commit 4f1568b

Please sign in to comment.