security-checklist/package.json
Brian Lovin bdd8e549a0
Merge pull request #120 from brianlovin/depfu/update/npm/prettier-1.16.3
Update prettier: 1.16.1 → 1.16.3 (patch)
2019-02-01 10:15:24 -08:00

72 lines
2.1 KiB
JSON

{
"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": {
"@sentry/browser": "^4.5.3",
"next": "^7.0.2",
"next-seo": "^1.10.0",
"react": "^16.8.0-alpha.0",
"react-clipboard.js": "^2.0.2",
"react-dom": "^16.8.0-alpha.0",
"react-markdown": "^4.0.6",
"styled-components": "^4.1.3",
"throttle-debounce": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"@cypress/browserify-preprocessor": "^1.1.2",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.10.0",
"babel-plugin-transform-define": "^1.3.1",
"cypress": "^3.1.5",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-react-app": "^3.0.6",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"flow-bin": "^0.91.0",
"lint-staged": "^8.1.1",
"prettier": "^1.16.3",
"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"
}