-
Notifications
You must be signed in to change notification settings - Fork 6
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 #4 from ensdomains/feat/refactor
feat: refactor
- Loading branch information
Showing
57 changed files
with
973 additions
and
22,653 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Build | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: oven-sh/setup-bun@v1 | ||
with: | ||
bun-version: 1.1.16 | ||
|
||
- run: bun install | ||
- run: bun run build | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: oven-sh/setup-bun@v1 | ||
with: | ||
bun-version: 1.1.16 | ||
|
||
- run: bun install | ||
- run: bun run lint |
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
legacy-peer-deps = true |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"formatter": { | ||
"enabled": true, | ||
"indentStyle": "space", | ||
"lineWidth": 120 | ||
}, | ||
"linter": { | ||
"enabled": true | ||
}, | ||
"organizeImports": { | ||
"enabled": true | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta http-equiv="Content-Security-Policy" content="script-src 'self'"> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>ENS Deed Reclaim</title> | ||
</head> | ||
|
||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
|
||
</html> |
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 |
---|---|---|
@@ -1,27 +1,35 @@ | ||
{ | ||
"name": "@project/monorepo", | ||
"version": "1.0.0", | ||
"keywords": [ | ||
"ethereum", | ||
"react", | ||
"workspaces", | ||
"yarn" | ||
], | ||
"name": "@ensdomains/reclaim", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"react-app:build": "source .env && REACT_APP_RECLAIM_GRAPH_URI=$REACT_APP_RECLAIM_GRAPH_URI REACT_APP_ENS_GRAPH_URI=$REACT_APP_ENS_GRAPH_URI REACT_APP_STAGE=live yarn workspace @project/react-app build", | ||
"react-app:publish": "echo 'reclaim.ens.domains' > packages/react-app/build/CNAME && yarn gh-pages -d packages/react-app/build", | ||
"react-app:deploy": "yarn react-app:build && yarn react-app:publish", | ||
"react-app:start": "yarn workspace @project/react-app start", | ||
"react-app:start:live": "source .env && REACT_APP_RECLAIM_GRAPH_URI=$REACT_APP_RECLAIM_GRAPH_URI REACT_APP_ENS_GRAPH_URI=$REACT_APP_ENS_GRAPH_URI REACT_APP_STAGE=live yarn workspace @project/react-app start" | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"lint": "biome check .", | ||
"preview": "vite preview" | ||
}, | ||
"workspaces": { | ||
"nohoist": [ | ||
"**/@graphprotocol/graph-ts", | ||
"**/@graphprotocol/graph-ts/**" | ||
], | ||
"packages": [ | ||
"packages/*" | ||
] | ||
"dependencies": { | ||
"@ensdomains/ensjs": "^3.7.0", | ||
"@ensdomains/thorin": "^0.6.50", | ||
"@tanstack/react-query": "5.0.5", | ||
"graphql": "^16.8.1", | ||
"graphql-request": "^7.0.1", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"react-transition-state": "^1.1.5", | ||
"styled-components": "^6.1.11", | ||
"viem": "2.13.6", | ||
"wagmi": "2.9.9" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "^1.1.2", | ||
"@types/react": "^18.2.23", | ||
"@types/react-dom": "^18.2.8", | ||
"@vitejs/plugin-react": "^4.1.0", | ||
"@wagmi/cli": "2.1.8", | ||
"buffer": "^6.0.3", | ||
"typescript": "^5.2.2", | ||
"vite": "^4.4.9" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.