Skip to content

Commit

Permalink
Merge pull request #139 from masa-finance/simodrws/add-celo-to-rainbo…
Browse files Browse the repository at this point in the history
…wkit

feat: update network switching to use wagmi, update modals, add valora
  • Loading branch information
H34D committed May 12, 2023
2 parents 9220a44 + c97c6f6 commit e7601fd
Show file tree
Hide file tree
Showing 51 changed files with 3,217 additions and 387 deletions.
15 changes: 13 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "@masa-finance/masa-react",
"version": "1.1.41",
"version": "1.2.0",
"license": "MIT",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
Expand All @@ -13,7 +13,7 @@
"scripts": {
"start": "yarn build:watch",
"build": "yarn build:tsc && yarn build:dist",
"build:tsc": "tsc && mkdir -p ./dist && cp -R ./src/fonts ./dist/src/fonts && mkdir -p ./dist/src/components/modal && cp ./src/provider/styles.scss ./dist/src/provider/styles.scss && cp ./src/components/modal/styles.scss ./dist/src/components/modal/styles.scss",
"build:tsc": "tsc && mkdir -p ./dist && cp -R ./src/fonts ./dist/src/fonts && mkdir -p ./dist/src/components/modal && mkdir -p ./dist/src/components/new-modal && cp ./src/provider/styles.scss ./dist/src/provider/styles.scss && cp ./src/components/modal/styles.scss ./dist/src/components/modal/styles.scss",
"build:dist": "cross-env NODE_ENV=production webpack",
"build:watch": "tsc -w",
"lint": "eslint \"./src/**/*.{ts,tsx}\" ./stories/**/*.tsx --fix",
Expand All @@ -34,6 +34,7 @@
"dependencies": {
"@acusti/react-code-input": "^3.11.0",
"@babel/preset-typescript": "^7.21.5",
"@celo/rainbowkit-celo": "^0.11.1",
"@masa-finance/masa-sdk": "^1.15.3",
"@metamask/providers": "^10.2.1",
"@rainbow-me/rainbowkit": "^0.12.12",
Expand All @@ -50,6 +51,7 @@
"react-query": "^3.39.3",
"react-spinners": "^0.13.8",
"react-use": "^17.4.0",
"react-use-pagination": "^2.0.1",
"reaptcha": "^1.12.1",
"rodal": "^2.0.0",
"storybook-addon-sass-postcss": "^0.1.3",
Expand All @@ -72,26 +74,34 @@
"@types/react": "^18.0.33",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.7.3",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-prettier": "^4.2.1",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"https-browserify": "^1.0.0",
"husky": "^8.0.2",
"jest": "^29.5.0",
"mini-css-extract-plugin": "^2.7.5",
"node-sass": "^8.0.0",
"os-browserify": "^0.3.0",
"postcss": "^8.4.21",
"postcss-loader": "^7.3.0",
"prettier": "^2.8.7",
"process": "^0.11.10",
"react-dom": "^18.2.0",
"sass-loader": "^13.2.2",
"size-limit": "^8.1.0",
"storybook": "^7.0.5",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"style-loader": "^3.3.2",
"terser-webpack-plugin": "^5.3.7",
"ts-jest": "^29.0.5",
Expand All @@ -101,6 +111,7 @@
"typedoc": "^0.24.4",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.0.4",
"url": "^0.11.0",
"webpack": "^5.81.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.1.0"
Expand Down
1 change: 1 addition & 0 deletions src/components/index.ts
@@ -1,4 +1,5 @@
export * from './masa-interface';
export * from './masa-loading';
export * from './modal';
export * from './new-modal';
export * from './spinner';

0 comments on commit e7601fd

Please sign in to comment.