mirror of
https://github.com/status-im/community-dapp.git
synced 2025-02-24 12:08:11 +00:00
* revert lockfile * revert deps * update webpack * update mocha * update ts-node * add core-js * update js-waku * add rimraf * set ts-node and typescript versions * update ts-node in contracts * update ts-node in dapp * update typescript in contracts * update typescript in dapp * extend tsconfig files * remove ts-node/register from .mocharc * fix @usedapp/core import * fix `VotingContract.sol` lint errors * set `exit` config
82 lines
2.7 KiB
JSON
82 lines
2.7 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}'",
|
|
"clean": "rimraf node_modules"
|
|
},
|
|
"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.9.5",
|
|
"webpack": "^5.75.0",
|
|
"webpack-cli": "^4.7.0",
|
|
"webpack-dev-server": "^3.11.2"
|
|
},
|
|
"resolutions": {
|
|
"ethers": "5.4.1"
|
|
}
|
|
}
|