community-dapp/package.json
Szymon Szlachtowicz 794db0b2dd
Add api mock (#9)
* Add getCommunityDetails

* Introduce getCommunitiesInDirectory mock

Co-authored-by: Szymon Szlachtowicz <szymon.szlachtowicz@Szymons-MacBook-Pro.local>
2021-06-07 20:57:52 +02:00

57 lines
1.8 KiB
JSON

{
"name": "status-community-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",
"scripts": {
"build": "rm -rf dist && webpack --mode=production",
"start": "webpack serve --mode=development",
"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.3.24",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/react": "^17.0.8",
"@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",
"@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",
"eslint": "^7.27.0",
"eslint-plugin-hooks": "^0.2.0",
"eslint-plugin-react": "^7.24.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"html-webpack-plugin": "^5.3.1",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"source-map-loader": "^3.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}