2021-06-02 08:51:58 +00:00
|
|
|
{
|
|
|
|
"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": {
|
2021-06-15 13:45:59 +00:00
|
|
|
"build": "rm -rf dist && webpack --mode=production --env ENV=production",
|
|
|
|
"start": "webpack serve --mode=development --env ENV=development",
|
2021-06-15 19:39:26 +00:00
|
|
|
"test": "mocha -r jsdom-global/register",
|
2021-06-02 08:51:58 +00:00
|
|
|
"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",
|
2021-06-15 19:39:26 +00:00
|
|
|
"@testing-library/react-hooks": "^7.0.0",
|
2021-06-07 18:57:52 +00:00
|
|
|
"@types/chai": "^4.2.18",
|
2021-06-15 19:39:26 +00:00
|
|
|
"@types/lodash": "^4.14.170",
|
2021-06-04 10:30:43 +00:00
|
|
|
"@types/mocha": "^8.2.2",
|
2021-06-02 08:51:58 +00:00
|
|
|
"@types/react": "^17.0.8",
|
|
|
|
"@types/react-dom": "^17.0.6",
|
2021-06-02 12:46:08 +00:00
|
|
|
"@types/react-router": "^5.1.14",
|
|
|
|
"@types/react-router-dom": "^5.1.7",
|
2021-06-02 08:51:58 +00:00
|
|
|
"@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",
|
2021-06-07 18:57:52 +00:00
|
|
|
"chai": "^4.3.4",
|
2021-06-02 08:51:58 +00:00
|
|
|
"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",
|
2021-06-15 19:39:26 +00:00
|
|
|
"jsdom": "^16.6.0",
|
|
|
|
"jsdom-global": "^3.0.2",
|
2021-06-04 10:30:43 +00:00
|
|
|
"mocha": "^8.4.0",
|
2021-06-02 08:51:58 +00:00
|
|
|
"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"
|
|
|
|
}
|
|
|
|
}
|