2019-01-13 01:52:43 +00:00
|
|
|
{
|
|
|
|
|
"name": "security-checklist",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"description": "A checklist for staying safe on the internet",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"now-build": "next build",
|
|
|
|
|
"dev": "next",
|
|
|
|
|
"start": "next start",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"flow": "flow",
|
|
|
|
|
"flow start": "flow start",
|
|
|
|
|
"flow stop": "flow stop",
|
|
|
|
|
"flow status": "flow status",
|
|
|
|
|
"flow coverage": "flow coverage",
|
|
|
|
|
"prettier": "prettier",
|
|
|
|
|
"cypress:open": "cypress open",
|
|
|
|
|
"cypress:run": "cypress run",
|
|
|
|
|
"lint:staged": "lint-staged"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2019-05-05 05:48:03 +00:00
|
|
|
"@sentry/browser": "^5.1.2",
|
2019-02-11 06:06:23 +00:00
|
|
|
"next": "^7.0.3",
|
2019-04-05 14:21:03 +00:00
|
|
|
"next-seo": "^1.11.2",
|
2019-01-13 01:52:43 +00:00
|
|
|
"react": "^16.8.0-alpha.0",
|
2019-03-20 00:55:56 +00:00
|
|
|
"react-clipboard.js": "^2.0.7",
|
2019-01-13 01:52:43 +00:00
|
|
|
"react-dom": "^16.8.0-alpha.0",
|
2019-04-16 02:36:02 +00:00
|
|
|
"react-markdown": "^4.0.8",
|
2019-03-24 17:50:48 +00:00
|
|
|
"styled-components": "^4.2.0",
|
2019-01-17 01:25:14 +00:00
|
|
|
"throttle-debounce": "^2.1.0"
|
2019-01-13 01:52:43 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2019-04-28 06:21:39 +00:00
|
|
|
"@babel/core": "^7.4.4",
|
|
|
|
|
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
|
2019-01-13 01:52:43 +00:00
|
|
|
"@babel/preset-flow": "^7.0.0",
|
2019-02-15 16:26:09 +00:00
|
|
|
"@cypress/browserify-preprocessor": "^2.0.0",
|
2019-01-13 01:52:43 +00:00
|
|
|
"babel-eslint": "^10.0.1",
|
|
|
|
|
"babel-plugin-styled-components": "^1.10.0",
|
2019-01-13 02:11:03 +00:00
|
|
|
"babel-plugin-transform-define": "^1.3.1",
|
2019-03-16 13:12:43 +00:00
|
|
|
"cypress": "^3.2.0",
|
2019-03-31 05:14:07 +00:00
|
|
|
"eslint": "^5.16.0",
|
2019-01-13 01:52:43 +00:00
|
|
|
"eslint-config-airbnb": "^17.1.0",
|
2019-04-27 05:57:29 +00:00
|
|
|
"eslint-config-prettier": "^4.2.0",
|
2019-05-10 06:01:57 +00:00
|
|
|
"eslint-config-react-app": "^4.0.1",
|
2019-05-04 06:03:08 +00:00
|
|
|
"eslint-plugin-flowtype": "^3.7.0",
|
2019-04-17 22:22:28 +00:00
|
|
|
"eslint-plugin-import": "^2.17.2",
|
2019-02-04 22:57:24 +00:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.2.1",
|
2019-01-13 01:52:43 +00:00
|
|
|
"eslint-plugin-prettier": "^3.0.1",
|
2019-05-05 06:29:42 +00:00
|
|
|
"eslint-plugin-react": "^7.13.0",
|
2019-03-17 12:50:08 +00:00
|
|
|
"flow-bin": "^0.95.1",
|
2019-05-05 05:51:41 +00:00
|
|
|
"lint-staged": "^8.1.6",
|
2019-04-13 21:52:42 +00:00
|
|
|
"prettier": "^1.17.0",
|
2019-01-13 01:52:43 +00:00
|
|
|
"prettier-eslint": "^8.8.2"
|
|
|
|
|
},
|
|
|
|
|
"lint-staged": {
|
|
|
|
|
"*.js": [
|
|
|
|
|
"prettier --write",
|
|
|
|
|
"eslint --fix",
|
|
|
|
|
"git add"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"pre-commit": "lint:staged",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/brianlovin/security-checklist.git"
|
|
|
|
|
},
|
|
|
|
|
"author": "Brian Lovin",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/brianlovin/security-checklist/issues"
|
|
|
|
|
},
|
|
|
|
|
"homepage": "https://github.com/brianlovin/security-checklist#readme"
|
|
|
|
|
}
|