Skip to content

Task9:Old000Driver #1433

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
task6:Old000Driver
  • Loading branch information
Old000Driver committed Feb 19, 2025
commit 7bd1821157d74325938f9deed8076f2536033d0b
99 changes: 99 additions & 0 deletions members/Old000Driver/task6/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Dependency directories
node_modules/
jspm_packages/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# dotenv environment variables file
.env
.env.test

# Next.js
.next/
out/
build/

# Nuxt.js
.nuxt/
dist/

# Gatsby files
.cache/
public/

# Vue.js
/dist/

# Svelte
__sapper__/
public/

# Storybook
out/
.storybook-out/

# Miscellaneous
.DS_Store
Thumbs.db

# IDEs and editors
.idea/
.vscode/
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# MacOS
.DS_Store

# Windows
Thumbs.db
ehthumbs.db

# Linux
*~

# Coverage directory used by tools like istanbul
coverage/

# TypeScript
*.tsbuildinfo

# Optional stylelint cache
.stylelintcache

# Optional Prettier cache
.prettiercache

# Optional TSLint cache
tslint.cache

# Optional Jest cache
jest/

pnpm-lock.yaml
51 changes: 51 additions & 0 deletions members/Old000Driver/task6/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"name": "dex",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^5.0.0",
"@rainbow-me/rainbowkit": "^2.2.3",
"@tanstack/react-query": "^5.66.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@uniswap/sdk-core": "^7.5.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-sdk": "^4.13.0",
"@wagmi/core": "^2.16.4",
"antd": "^5.1.5",
"axios": "^1.2.3",
"ethers": "^5.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.6.2",
"react-scripts": "5.0.1",
"viem": "~2.23.2",
"wagmi": "^2.14.11",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
Loading