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

65 lines
1.7 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-06-17 00:48:15 +00:00
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"ethers": "5.7.0",
2022-06-17 00:48:15 +00:00
"fontsource-roboto": "^4.0.0",
2022-09-05 05:26:16 +00:00
"js-waku": "0.24.0-158b789",
2022-08-29 06:49:01 +00:00
"protobufjs": "^7.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uint8arrays": "^3.1.0"
2022-06-17 00:48:15 +00:00
},
"scripts": {
2022-08-20 03:25:32 +00:00
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
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",
2022-08-08 02:03:56 +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"
]
},
"devDependencies": {
"@ethersproject/shims": "^5.5.0",
"@types/jest": "^27.4.0",
2022-06-17 00:48:15 +00:00
"@types/node": "^17.0.19",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
2022-06-17 00:48:15 +00:00
"cspell": "^6.0.0",
"eslint": "^8.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"react-scripts": "5.0.1",
2022-06-17 00:48:15 +00:00
"typescript": "^4.5.5"
}
}