js-waku-examples/examples/eth-pm/package.json

72 lines
1.9 KiB
JSON
Raw Normal View History

2022-06-17 00:48:15 +00:00
{
"name": "eth-pm",
"version": "0.1.0",
"private": true,
2022-08-20 08:11:24 +00:00
"homepage": "/eth-pm",
2022-06-17 00:48:15 +00:00
"dependencies": {
"@ethersproject/abstract-signer": "5.7.0",
"@ethersproject/providers": "5.7.0",
2022-11-20 23:19:10 +00:00
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@waku/byte-utils": "0.0.2",
"@waku/core": "^0.0.8",
"@waku/create": "^0.0.6",
"@waku/interfaces": "^0.0.6",
"@waku/message-encryption": "^0.0.7",
2022-11-20 23:19:10 +00:00
"ethers": "5.7.1",
"fontsource-roboto": "^4.0.0",
"protobufjs": "^7.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
2022-11-20 23:19:10 +00:00
"uint8arrays": "^4.0.2"
2022-06-17 00:48:15 +00:00
},
"scripts": {
"start": "GENERATE_SOURCEMAP=false PORT=3004 craco start",
"build": "GENERATE_SOURCEMAP=false craco build",
2022-06-17 00:48:15 +00:00
"fix": "run-s fix:*",
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts --ext .tsx",
"test:prettier": "prettier \"src/**/*.{ts,tsx}\" \"./*.json\" --list-different",
2023-01-04 21:39:26 +00:00
"test:spelling": "cspell \"{README.md,src/**/*.{ts,tsx},public/**/*.html}\" -c ./.cspell.json",
2022-06-17 00:48:15 +00:00
"fix:prettier": "prettier \"src/**/*.{ts,tsx}\" \"./*.json\" --write",
"fix:lint": "eslint src --ext .ts --ext .tsx --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not ie <= 99",
"not android <= 4.4.4",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
2022-12-27 21:30:40 +00:00
"overrides": {
"react-refresh": "0.14.0"
},
2022-06-17 00:48:15 +00:00
"devDependencies": {
"@craco/craco": "^6.4.5",
2022-11-20 23:19:10 +00:00
"@ethersproject/shims": "^5.7.0",
"@types/jest": "^27.5.2",
"@types/node": "^17.0.45",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"cspell": "^6.14.3",
"eslint": "^8.28.0",
2022-06-17 00:48:15 +00:00
"npm-run-all": "^4.1.5",
2022-11-20 23:19:10 +00:00
"prettier": "^2.7.1",
"react-scripts": "5.0.1",
2022-11-20 23:19:10 +00:00
"typescript": "^4.9.3"
2022-06-17 00:48:15 +00:00
}
}