Felicio Mununga 08676b6d65
Use js-waku@^0.30.0 (#1)
* use `core-js@^3.26.1` and `js-waku@^0.30.0`

* comment

* use `webpack@^5.75.0`

* use `node@18.12.1`

* ignore `wakuMessage.test.ts`

* comment

* use `module` in `package.json`

* update mocha dependencies

* use `.cjs` extension for webpack config

* update mocha config

* update tsconfig

* remove empty setup.ts

* fix imports

* fix `wakuMessage.test.ts`

* rename prettier config

* resolve lint issues

* update test content topics
2023-03-02 13:52:22 +01:00

81 lines
2.6 KiB
JSON

{
"name": "@status-community-dapp/dapp",
"version": "0.0.1",
"description": "Community directory curator dApp for Status",
"main": "index.js",
"repository": "git@github.com:EthWorks/status-community-dapp.git",
"license": "MIT",
"type": "module",
"scripts": {
"build": "rm -rf dist && NODE_OPTIONS=--openssl-legacy-provider webpack --mode=production --env ENV=production",
"start": "NODE_OPTIONS=--openssl-legacy-provider webpack serve --mode=development --env ENV=development --https",
"test": "mocha",
"lint": "yarn lint:prettier --check && yarn lint:eslint",
"lint:fix": "yarn lint:prettier --write && yarn lint:eslint --fix",
"lint:eslint": "eslint './{src,test}/**/*.{ts,tsx}'",
"lint:prettier": "yarn prettier './{src,test}/**/*.{ts,tsx}'"
},
"dependencies": {
"@usedapp/core": "^0.4.6",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eth-sig-util": "^3.0.1",
"humanize-duration": "^3.27.0",
"js-waku": "^0.30.0",
"protons": "^2.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"stream-browserify": "^3.0.0",
"styled-components": "^5.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/react-hooks": "^7.0.0",
"@types/chai": "^4.2.18",
"@types/humanize-duration": "^3.25.0",
"@types/lodash": "^4.14.170",
"@types/mocha": "^10.0.1",
"@types/node": "^15.12.4",
"@types/react": "^17.0.8",
"@types/react-countup": "^4.3.1",
"@types/react-dom": "^17.0.6",
"@types/react-router": "^5.1.14",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.9",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-loader": "^8.2.2",
"babel-preset-minify": "^0.5.1",
"chai": "^4.3.4",
"core-js": "^3.26.1",
"eslint": "^7.27.0",
"eslint-plugin-hooks": "^0.2.0",
"eslint-plugin-react": "^7.24.0",
"ethereum-waffle": "^3.4.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"html-webpack-plugin": "^5.3.1",
"jsdom": "^16.6.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"prettier": "^2.3.0",
"react-countup": "^4.4.0",
"source-map-loader": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.3.2",
"webpack": "^5.75.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"resolutions": {
"ethers": "5.4.1"
}
}