@dechains/cra-template-dapp
Version:
Create react app template with notification system, etherium wallet integration, MUI5 integration and other necessary packages required for base dApp development in REACTJS
61 lines • 1.99 kB
JSON
{
"package": {
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.1",
"@mui/lab": "^5.0.0-alpha.74",
"@mui/material": "^5.5.2",
"@mui/styles": "^5.5.1",
"@react-dapp/utils": "^0.1.0",
"@react-dapp/wallet": "^1.2.5",
"@reduxjs/toolkit": "^1.7.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"axios": "^0.24.0",
"buffer": "^6.0.3",
"clsx": "^1.1.1",
"env-cmd": "^10.1.0",
"process": "^0.11.10",
"react-css-burger": "^0.2.0",
"react-dropzone": "^12.1.0",
"react-redux": "^7.2.6",
"react-scripts": "^5.0.1",
"react-router-dom": "^6.3.0",
"reapop": "^4.0.5",
"tst-reflect": "^0.7.4",
"typescript": "^4.4.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"prettier": "^2.6.0",
"@types/react-dom": "^18.0.4",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"react-app-rewired": "^2.2.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"scripts": {
"start": "env-cmd -f .env.development react-app-rewired start",
"start:prod": "env-cmd -f .env react-app-rewired start",
"build": "env-cmd -f .env.development react-app-rewired build",
"format:write": "prettier --write \"**/*.{js,jsx,ts,tsx}\""
}
},
"env": {
"REACT_APP_BASE_API_URL": "https://dc-relayer-api.herokuapp.com/api/",
"REACT_APP_ZERO_ADDRESS": "0x0000000000000000000000000000000000000000",
"REACT_APP_PRODUCTION": "true"
},
"envDevelopment": {
"REACT_APP_BASE_API_URL": "https://dc-relayer-api.herokuapp.com/api/",
"REACT_APP_ZERO_ADDRESS": "0x0000000000000000000000000000000000000000",
"REACT_APP_PRODUCTION": "false"
}
}