Skip to content

Commit

Permalink
add dac app to the main view
Browse files Browse the repository at this point in the history
  • Loading branch information
aeddaqqa committed Jun 11, 2024
1 parent cdf0db8 commit 786ee55
Show file tree
Hide file tree
Showing 289 changed files with 147 additions and 18,599 deletions.
14 changes: 7 additions & 7 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"trailingComma": "all",
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"printWidth": 100,
"useTabs": false,
"arrowParens": "avoid"
"trailingComma": "all",
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"printWidth": 100,
"useTabs": false,
"arrowParens": "avoid"
}
175 changes: 87 additions & 88 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,90 +1,89 @@
{
"name": "host-react",
"version": "1.0.0",
"scripts": {
"build": "PUBLIC_PATH=https://suite.camino.network/ EXPLORER_PATH=https://suite.camino.network/explorer/ WALLET_PATH=https://suite.camino.network/wallet/ webpack --config webpack.prod.js",
"build:dev": "PUBLIC_PATH=https://dev.suite.camino.network/ EXPLORER_PATH=https://dev.suite.camino.network/explorer/ WALLET_PATH=https://dev.suite.camino.network/wallet/ webpack --config webpack.dev.js",
"build:stage": "PUBLIC_PATH=https://stage.suite.camino.network/ EXPLORER_PATH=https://stage.suite.camino.network/explorer/ WALLET_PATH=https://stage.suite.camino.network/wallet/ webpack --config webpack.prod.js",
"build:start": "cd dist && PORT=5001 npx serve",
"start": "webpack-dev-server --config webpack.local.js",
"start:live": "webpack-dev-server --open --config webpack.local.js --live-reload",
"checkTs": "tsc --noEmit",
"eslint": "eslint --ext js,ts,tsx src",
"eslint:fix": "eslint --ext js,ts,tsx --fix src",
"lint": "yarn run eslint src",
"lint:fix": "yarn run eslint --fix src",
"format-check": "prettier --check '{*.js, src/**/*.{js,jsx,ts,tsx}, .github/workflows/*.{yml,yaml}}'",
"format": "prettier --write '{*.js, src/**/*.{js,jsx,ts,tsx}, .github/workflows/*.{yml,yaml}}'",
"preinstall": "git submodule update --recursive --init"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.10.4",
"@c4tplatform/camino-wallet-sdk": "file:camino-wallet-sdk",
"@cypress/grep": "^3.1.4",
"@cypress/xpath": "^2.0.3",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mdi/js": "^7.0.96",
"@mdi/react": "^1.6.1",
"@reduxjs/toolkit": "^1.8.1",
"@testing-library/dom": "^8.19.0",
"@mui/icons-material": "^5.15.11",
"@mui/material": "^5.15.11",
"@mui/system": "^5.15.11",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.1",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.189",
"@types/node": "^17.0.25",
"@types/react": "^18.0.28",
"@types/react-dom": "^17.0.2",
"@types/react-helmet": "^6.1.6",
"autoprefixer": "^10.1.0",
"axios": "^1.1.3",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^11.0.0",
"cypress": "12.5.1",
"cypress-file-upload": "^4.0.7",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"formik": "^2.2.9",
"framer-motion": "^8.4.3",
"html-webpack-plugin": "^5.3.2",
"lodash": "^4.17.21",
"path": "^0.12.7",
"postcss": "^8.2.1",
"postcss-loader": "^4.1.0",
"prettier": "^2.8.3",
"react-helmet-async": "^1.3.0",
"react-idle-timer": "^5.5.3",
"react-redux": "^8.0.1",
"react-router": "^6.8.1",
"react-router-dom": "^6.8.1",
"react-scripts": "5.0.1",
"style-loader": "^3.3.0",
"typescript": "^5.3.3",
"web-vitals": "^2.1.0",
"webpack": "^5.57.1",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0",
"yup": "^0.32.11"
},
"dependencies": {
"react": "^18.2.0",
"react-circle-flags": "^0.0.18",
"react-dom": "^18.2.0"
}
"name": "host-react",
"version": "1.0.0",
"scripts": {
"build": "PUBLIC_PATH=https://suite.camino.network/ EXPLORER_PATH=https://suite.camino.network/explorer/ WALLET_PATH=https://suite.camino.network/wallet/ DAC_PATH=https://suite.camino.network/dac/ webpack --config webpack.prod.js",
"build:dev": "PUBLIC_PATH=https://dev.suite.camino.network/ EXPLORER_PATH=https://dev.suite.camino.network/explorer/ WALLET_PATH=https://dev.suite.camino.network/wallet/ DAC_PATH=https://suite.camino.network/dac/ webpack --config webpack.dev.js",
"build:stage": "PUBLIC_PATH=https://stage.suite.camino.network/ EXPLORER_PATH=https://stage.suite.camino.network/explorer/ WALLET_PATH=https://stage.suite.camino.network/wallet/ DAC_PATH=https://suite.camino.network/dac/ webpack --config webpack.prod.js",
"build:start": "cd dist && PORT=5001 npx serve",
"start": "webpack-dev-server --config webpack.local.js",
"start:live": "webpack-dev-server --open --config webpack.local.js --live-reload",
"checkTs": "tsc --noEmit",
"eslint": "eslint --ext js,ts,tsx src",
"eslint:fix": "eslint --ext js,ts,tsx --fix src",
"lint": "yarn run eslint src",
"lint:fix": "yarn run eslint --fix src",
"format-check": "prettier --check '{*.js, src/**/*.{js,jsx,ts,tsx}, .github/workflows/*.{yml,yaml}}'",
"format": "prettier --write '{*.js, src/**/*.{js,jsx,ts,tsx}, .github/workflows/*.{yml,yaml}}'",
"preinstall": "git submodule update --recursive --init"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.10.4",
"@c4tplatform/camino-wallet-sdk": "file:camino-wallet-sdk",
"@cypress/grep": "^3.1.4",
"@cypress/xpath": "^2.0.3",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mdi/js": "^7.0.96",
"@mdi/react": "^1.6.1",
"@reduxjs/toolkit": "^1.8.1",
"@testing-library/dom": "^8.19.0",
"@mui/icons-material": "^5.15.11",
"@mui/material": "^5.15.11",
"@mui/system": "^5.15.11",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.1",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.189",
"@types/node": "^17.0.25",
"@types/react": "^18.0.28",
"@types/react-dom": "^17.0.2",
"@types/react-helmet": "^6.1.6",
"autoprefixer": "^10.1.0",
"axios": "^1.1.3",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^11.0.0",
"cypress": "12.5.1",
"cypress-file-upload": "^4.0.7",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"formik": "^2.2.9",
"framer-motion": "^8.4.3",
"html-webpack-plugin": "^5.3.2",
"lodash": "^4.17.21",
"path": "^0.12.7",
"postcss": "^8.2.1",
"postcss-loader": "^4.1.0",
"prettier": "^2.8.3",
"react-helmet-async": "^1.3.0",
"react-idle-timer": "^5.5.3",
"react-redux": "^8.0.1",
"react-router": "^6.8.1",
"react-router-dom": "^6.8.1",
"react-scripts": "5.0.1",
"style-loader": "^3.3.0",
"typescript": "^5.3.3",
"web-vitals": "^2.1.0",
"webpack": "^5.57.1",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0",
"yup": "^0.32.11"
},
"dependencies": {
"react": "^18.2.0",
"react-circle-flags": "^0.0.18",
"react-dom": "^18.2.0"
}
}
Loading

0 comments on commit 786ee55

Please sign in to comment.