mirror of
https://github.com/waku-org/js-waku-examples.git
synced 2025-02-23 05:08:15 +00:00
* use next.js tempalte * use next lint rules * alight UI * fix problem with margins * remove old page, rename to hooks * add constants * create RLN service, add utils * add RLN init * refactor a bit * add init for Keystore * add store functions * add styles * add contract hooks, add store fields, fix multiple downloads issue * add features * add keystore read logic * add import export * combine to useContract * add useWaku stub, add state to Waku block, styles * add creation of a node * add messages functionality * up readme * update CI * update readme * remove and rename, address comments * update readme * move const
23 lines
509 B
JSON
23 lines
509 B
JSON
{
|
|
"dependencies": {
|
|
"gh-pages": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.46.0",
|
|
"@typescript-eslint/parser": "^5.46.0",
|
|
"eslint": "^8.29.0",
|
|
"eslint-config-next": "13.5.6",
|
|
"husky": "^8.0.0",
|
|
"prettier": "^2.8.1",
|
|
"pretty-quick": "^3.1.3",
|
|
"typescript": "^4.9.4"
|
|
},
|
|
"scripts": {
|
|
"prepare": "husky install"
|
|
},
|
|
"lint-staged": {
|
|
"*.{html,css,js,ts,jsx,tsx,json}": "prettier --write",
|
|
"*.{js,ts}": "eslint --fix"
|
|
}
|
|
}
|