Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Feature/set UI routes (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
developerasun authored Nov 27, 2022
2 parents c2719b5 + d776873 commit 96412f5
Show file tree
Hide file tree
Showing 22 changed files with 836 additions and 265 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ build/bin
node_modules
frontend/dist

# Assets
frontend/src/assets/images/pokemon

# VS Code
.vscode

Expand Down
Binary file added frontend/.nvmrc
Binary file not shown.
6 changes: 6 additions & 0 deletions frontend/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules/
dist/
wailsjs/
pnpm-lock.yaml
.pnpm-store
src/assets/*
38 changes: 19 additions & 19 deletions frontend/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"trailingComma": "es5",
"semi": true,
"tabWidth": 2,
"singleQuote": true,
"printWidth": 80,
"useTabs": false,
"arrowParens": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"jsxSingleQuote": false,
"endOfLine": "auto",
"overrides": [
{
"files": "*.{md,yml,yaml,json}",
"options": {
"tabWidth": 2
}
}
]
"trailingComma": "es5",
"semi": true,
"tabWidth": 2,
"singleQuote": true,
"printWidth": 120,
"useTabs": false,
"arrowParens": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"jsxSingleQuote": false,
"endOfLine": "auto",
"overrides": [
{
"files": "*.{md,yml,yaml,json}",
"options": {
"tabWidth": 2
}
}
]
}
11 changes: 9 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,25 @@
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
"preview": "vite preview",
"format": "prettier -w ./src/**/*",
"format:check": "prettier -c ./src/**/*"
},
"dependencies": {
"@babel/core": "^7.20.2",
"@tanstack/query-core": "^4.18.0",
"ethers": "^5.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react-dom": "^18.2.0",
"siwe": "^1.1.6"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^2.0.1",
"prettier": "^2.8.0",
"react-is": "^18.2.0",
"react-router-dom": "^6.4.3",
"react-toastify": "^9.1.1",
Expand Down
Loading

0 comments on commit 96412f5

Please sign in to comment.