-
Notifications
You must be signed in to change notification settings - Fork 0
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 #118 from BreadchainCoop/fix-cleanup
Clean up repo
- Loading branch information
Showing
32 changed files
with
265 additions
and
8,239 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 |
---|---|---|
@@ -1,9 +1,6 @@ | ||
{ | ||
"extends": [ | ||
"next/core-web-vitals", | ||
"plugin:storybook/recommended" | ||
] | ||
, "rules": { | ||
"@next/next/no-img-element": "off" | ||
} | ||
"extends": ["next/core-web-vitals"], | ||
"rules": { | ||
"@next/next/no-img-element": "off" | ||
} | ||
} |
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
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.
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 |
---|---|---|
|
@@ -4,17 +4,10 @@ | |
"private": true, | ||
"scripts": { | ||
"dev": "next dev --turbo", | ||
"hardhat": "env-cmd -f .env.hardhat.local hardhat node", | ||
"test": "playwright test", | ||
"ci:build": "CI=true next build", | ||
"ci:hardhat": "hardhat node", | ||
"ci:test": "CI=true pnpm run ci:hardhat & sleep 3 && playwright test", | ||
"storybook:dev": "storybook dev -p 6006", | ||
"storybook:build": "storybook build", | ||
"storybook:serve": "serve storybook-static", | ||
"prod:build": "next build", | ||
"prod:serve": "serve out", | ||
"prod:deploy": "npm install -g [email protected] && pnpm install --prod=true --frozen-lockfile && pnpm run prod:build", | ||
"build": "next build", | ||
"serve": "serve out", | ||
"deploy": "npm install -g [email protected] && pnpm install --prod=true --frozen-lockfile && pnpm run build", | ||
"lint": "next lint", | ||
"find-deadcode": "ts-prune | grep -v '(used in module)'" | ||
}, | ||
|
@@ -32,43 +25,26 @@ | |
"clsx": "^2.0.0", | ||
"date-fns": "^3.6.0", | ||
"framer-motion": "^10.16.4", | ||
"graphql-request": "^6.1.0", | ||
"lokijs": "^1.5.12", | ||
"nanoid": "^5.0.7", | ||
"next": "14.1.0", | ||
"pino-pretty": "^10.2.3", | ||
"pino-pretty": "^11.2.2", | ||
"react": "^18", | ||
"react-dom": "^18", | ||
"react-query": "^3.39.3", | ||
"recharts": "^2.9.3", | ||
"viem": "^1.15.4", | ||
"wagmi": "^1.4.12" | ||
}, | ||
"devDependencies": { | ||
"@next/bundle-analyzer": "^14.0.3", | ||
"@nomicfoundation/hardhat-toolbox-viem": "^2.0.0", | ||
"@playwright/test": "^1.43.1", | ||
"@storybook/addon-essentials": "^7.5.0", | ||
"@storybook/addon-interactions": "^7.5.0", | ||
"@storybook/addon-links": "^7.5.0", | ||
"@storybook/addon-onboarding": "^1.0.8", | ||
"@storybook/addon-viewport": "^7.5.1", | ||
"@storybook/blocks": "^7.5.0", | ||
"@storybook/nextjs": "^7.5.0", | ||
"@storybook/react": "^7.5.0", | ||
"@storybook/testing-library": "^0.2.2", | ||
"@tailwindcss/typography": "^0.5.10", | ||
"@types/node": "^20", | ||
"@types/react": "^18", | ||
"@types/react-dom": "^18", | ||
"autoprefixer": "^10", | ||
"concurrently": "^8.2.1", | ||
"dotenv": "^16.3.1", | ||
"env-cmd": "^10.1.0", | ||
"eslint": "^8", | ||
"eslint-config-next": "13.5.4", | ||
"eslint-plugin-storybook": "^0.6.15", | ||
"hardhat": "^2.19.1", | ||
"postcss": "^8", | ||
"serve": "^14.2.1", | ||
"storybook": "^7.5.0", | ||
|
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
Oops, something went wrong.