{ "name": "website", "version": "0.1.0", "private": true, "engines": { "node": ">=10.0.0", "npm": ">=6.0.0" }, "scripts": { "dev": "next dev", "build": "next build", "export": "next export", "start": "next start", "deploy:prod": "./scripts/deploy-project.sh --prod", "deploy:staging": "./scripts/deploy-project.sh", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage --colors", "prettify": "prettier --trailing-comma es5 --single-quote --write **/*.js", "cypress": "node_modules/.bin/cypress open", "now": "now dev" }, "dependencies": { "@blueprintjs/core": "^3.18.0", "@blueprintjs/icons": "^3.13.0", "@blueprintjs/select": "^3.10.0", "@sentry/browser": "^5.7.1", "@sentry/node": "^5.7.1", "@tryghost/content-api": "^1.3.2", "@weco/next-plugin-transpile-modules": "^2.2.1", "@zeit/next-css": "^1.0.1", "@zeit/next-source-maps": "0.0.4-canary.1", "axios": "^0.19.0", "bignumber.js": "^9.0.0", "classnames": "^2.2.6", "dompurify": "^2.0.7", "hashids": "^2.2.1", "js-cookie": "^2.2.1", "jsdom": "^15.2.0", "lightweight-charts": "^1.1.0", "lodash": "^4.17.15", "md5": "^2.2.1", "mockdate": "^2.0.5", "moment": "^2.24.0", "next": "^9.0.3", "node-sass": "4.12.0", "now": "^17.1.1", "numeral": "^2.0.6", "prop-types": "^15.7.2", "react": "^16.8.6", "react-custom-scrollbars": "^4.2.1", "react-dom": "16.8.6", "react-ga": "^2.6.0", "react-scroll": "^1.7.14", "react-sparklines": "^1.7.0", "react-spinners": "^0.6.0", "react-table": "^6.10.0", "react-tooltip": "^3.11.1", "rxjs": "^6.5.3", "styled-jsx": "^3.2.4", "ta-api-node": "^0.1.9", "updeep": "^1.2.0", "ws": "^7.1.2", "zxcvbn": "^4.4.2" }, "devDependencies": { "@babel/core": "7.3.4", "@sentry/cli": "^1.48.0", "babel-eslint": "^10.0.3", "babel-jest": "24.1.0", "cypress": "^4.2.0", "enzyme": "^3.11.0", "enzyme-adapter-react-16": "^1.15.2", "eslint": "^6.1.0", "eslint-config-airbnb": "^18.0.1", "eslint-config-prettier": "^6.3.0", "eslint-plugin-cypress": "^2.10.3", "eslint-plugin-import": "^2.18.2", "eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-prettier": "^3.1.0", "eslint-plugin-react": "^7.16.0", "eslint-plugin-react-hooks": "^1.7.0", "git-branch-is": "^3.1.0", "husky": "^3.1.0", "jest": "^24.9.0", "jest-extended": "^0.11.2", "lint-staged": "^9.4.0", "mock-socket": "^9.0.0", "prettier": "1.18.2", "pretty-quick": "^1.11.1", "react-test-renderer": "16.4.2" }, "husky": { "hooks": { "pre-commit": "git-branch-is -r \"^((?!master).)*$\" && lint-staged" } }, "setupFiles": [ "<rootDir>/setupTests.js" ], "lint-staged": { "*.js": [ "eslint --fix", "pretty-quick --staged && echo 'run hook'" ] } }