Skip to content

Commit

Permalink
Merge pull request #190 from 1Hive/#186-mini-dashboard
Browse files Browse the repository at this point in the history
Dashboard with active quest count + piggy but hardcode total bounties USD value
  • Loading branch information
Corantin committed Apr 5, 2022
2 parents 8f5cc4a + 6aadcfc commit de8dc11
Show file tree
Hide file tree
Showing 31 changed files with 2,037 additions and 62 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Case Sensitivity Checker
uses: credfeto/action-case-checker@v1.1
- name: Install
run: yarn
run: yarn ci
- name: Lint
run: yarn lint
- name: Build
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
],
"private": true,
"scripts": {
"ci" : "yarn install --pure-lockfile",
"lint": "yarn workspace @1hive/quests-react-app lint",
"chain": "yarn workspace @1hive/quests-hardhat chain",
"test": "yarn workspace @1hive/quests-hardhat test",
Expand Down
16 changes: 13 additions & 3 deletions packages/react-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@uniswap/sdk": "^3.0.3",
"@urql/devtools": "^2.0.2",
"chalk": "^4.1.2",
"clipboard-polyfill": "^3.0.0-pre5",
Expand All @@ -47,7 +48,7 @@
"eslint-plugin-react": "7.23.1",
"eslint-plugin-react-hooks": "4",
"ethereumjs-util": "^7.0.8",
"ethers": "^5.3.1",
"ethers": "^5.5.1",
"formik": "^2.2.6",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
Expand Down Expand Up @@ -92,6 +93,7 @@
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@sentry/webpack-plugin": "^1.15.1",
"@testing-library/react-hooks": "^7.0.2",
"@types/lodash-es": "^4.17.5",
"@types/react-router-dom": "^5.3.1",
"@types/styled-components": "^5.1.15",
Expand All @@ -107,6 +109,7 @@
"react-app-polyfill": "^1.0.6",
"react-app-rewired": "^2.1.8",
"react-dev-utils": "^11.0.4",
"react-test-renderer": "^16.9.0",
"rimraf": "^2.6.2",
"sass": "^1.39.0",
"sass-loader": "^11.0.1",
Expand All @@ -126,15 +129,22 @@
"sync-assets": "copy-aragon-ui-assets ./public",
"eject": "react-scripts eject",
"prestart": "node ./scripts/create_contracts.js",
"test": "react-scripts test",
"test": "react-app-rewired test --env=jsdom",
"ipfs": "node ./scripts/ipfs.js",
"surge": "cp build/index.html build/200.html && surge ./build",
"s3": "node ./scripts/s3.js",
"ship": "yarn surge",
"theme": "npx gulp less",
"watch": "node ./scripts/watch.js"
"watch": "node ./scripts/watch.js",
"ci": "yarn install --pure-lockfile"
},
"resolutions": {
"styled-components": "^5"
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"^lodash-es$": "lodash"
}
}
}
Loading

1 comment on commit de8dc11

@vercel
Copy link

@vercel vercel bot commented on de8dc11 Apr 5, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

Please sign in to comment.