2019-03-13 09:13:34 +00:00
|
|
|
{
|
|
|
|
"name": "discover-dapps",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
2019-03-14 18:58:19 +00:00
|
|
|
"connected-react-router": "^6.3.2",
|
2019-03-28 11:55:29 +00:00
|
|
|
"debounce": "^1.2.0",
|
2019-03-14 18:58:19 +00:00
|
|
|
"history": "^4.7.2",
|
|
|
|
"moment": "^2.24.0",
|
2019-03-28 11:55:29 +00:00
|
|
|
"node-sass": "^4.11.0",
|
2019-03-14 18:58:19 +00:00
|
|
|
"prop-types": "^15.7.2",
|
2019-03-13 09:13:34 +00:00
|
|
|
"react": "^16.8.4",
|
|
|
|
"react-dom": "^16.8.4",
|
|
|
|
"react-redux": "^6.0.1",
|
|
|
|
"react-router": "^4.3.1",
|
2019-03-14 18:58:19 +00:00
|
|
|
"react-router-dom": "^4.3.1",
|
2019-03-13 09:13:34 +00:00
|
|
|
"react-scripts": "2.1.8",
|
|
|
|
"redux": "^4.0.1",
|
|
|
|
"reselect": "^4.0.0"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"start": "react-scripts start",
|
|
|
|
"build": "react-scripts build",
|
|
|
|
"test": "react-scripts test",
|
2019-04-01 07:03:49 +00:00
|
|
|
"eject": "react-scripts eject",
|
|
|
|
"staging-deploy": "npm run build && aws s3 sync --acl public-read build s3://status-discover-dapps-staging/ --delete && rm -rf build"
|
2019-03-13 09:13:34 +00:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
|
|
|
|
"prettier --single-quote --write",
|
|
|
|
"git add"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "react-app"
|
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not ie <= 11",
|
|
|
|
"not op_mini all"
|
|
|
|
],
|
|
|
|
"devDependencies": {
|
|
|
|
"eslint-config-airbnb": "^17.1.0",
|
|
|
|
"eslint-config-prettier": "^4.1.0",
|
|
|
|
"eslint-plugin-prettier": "^3.0.1",
|
|
|
|
"husky": "^1.3.1",
|
|
|
|
"lint-staged": "^8.1.5",
|
|
|
|
"prettier": "^1.16.4"
|
|
|
|
}
|
|
|
|
}
|