2018-08-27 11:41:01 +00:00
|
|
|
{
|
|
|
|
"name": "frontend",
|
2019-08-31 18:55:34 +00:00
|
|
|
"version": "2.8.2",
|
2018-08-27 11:41:01 +00:00
|
|
|
"private": true,
|
2019-04-17 10:44:48 +00:00
|
|
|
"scripts": {
|
2019-04-17 14:44:23 +00:00
|
|
|
"start": "NODE_ENV=development react-scripts start",
|
|
|
|
"build": "react-scripts build",
|
2019-07-14 11:47:06 +00:00
|
|
|
"typecheck": "tsc --noemit",
|
2020-05-19 13:45:27 +00:00
|
|
|
"lint": "yarn typecheck && yarn eslint src/ --ext .js,.jsx,.ts,.tsx",
|
2019-04-17 10:44:48 +00:00
|
|
|
"lint:fix": "yarn lint --fix",
|
|
|
|
"pretty": "prettier --write \"src/**/*.{ts,tsx}\"",
|
2019-08-20 09:10:33 +00:00
|
|
|
"test": "yarn lint && react-scripts test --ci",
|
2020-10-06 13:51:34 +00:00
|
|
|
"eject": "react-scripts eject",
|
|
|
|
"snyk-protect": "snyk protect",
|
|
|
|
"prepare": "yarn run snyk-protect"
|
2019-04-17 10:44:48 +00:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
2019-04-17 13:38:00 +00:00
|
|
|
"src/**/*.{ts,tsx}": [
|
2019-04-17 10:44:48 +00:00
|
|
|
"yarn pretty",
|
2020-05-19 13:45:27 +00:00
|
|
|
"yarn lint:fix"
|
2019-04-17 10:44:48 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"prettier": {
|
2019-04-17 13:38:00 +00:00
|
|
|
"printWidth": 120
|
2019-04-17 10:44:48 +00:00
|
|
|
},
|
2018-08-27 11:41:01 +00:00
|
|
|
"dependencies": {
|
2020-10-06 15:43:20 +00:00
|
|
|
"@blueprintjs/core": "^3.33.0",
|
|
|
|
"@blueprintjs/icons": "^3.22.0",
|
|
|
|
"@blueprintjs/select": "^3.14.2",
|
2018-08-27 21:31:27 +00:00
|
|
|
"classnames": "^2.2.6",
|
2019-07-21 18:05:07 +00:00
|
|
|
"connected-react-router": "^6.5.2",
|
2020-10-06 13:51:34 +00:00
|
|
|
"cross-fetch": "^3.0.6",
|
2020-10-06 15:43:20 +00:00
|
|
|
"cytoscape": "^3.16.1",
|
2020-05-19 13:45:27 +00:00
|
|
|
"cytoscape-popper": "^1.0.7",
|
2019-07-23 12:20:34 +00:00
|
|
|
"inflection": "^1.12.0",
|
2020-10-06 13:51:34 +00:00
|
|
|
"lodash": "^4.17.20",
|
2020-10-06 15:43:20 +00:00
|
|
|
"moment": "^2.29.1",
|
2018-08-27 15:27:09 +00:00
|
|
|
"normalize.css": "^8.0.0",
|
2019-07-18 15:20:09 +00:00
|
|
|
"numeral": "^2.0.6",
|
2019-10-15 09:43:30 +00:00
|
|
|
"react": "^16.10.2",
|
|
|
|
"react-dom": "^16.10.2",
|
2020-10-06 15:43:20 +00:00
|
|
|
"react-redux": "^7.2.1",
|
2020-05-19 13:45:27 +00:00
|
|
|
"react-router-dom": "^5.2.0",
|
2020-10-06 15:43:20 +00:00
|
|
|
"react-sigma": "^1.2.35",
|
|
|
|
"react-virtualized": "^9.22.2",
|
2019-07-14 11:47:06 +00:00
|
|
|
"redux": "^4.0.4",
|
2018-09-01 17:24:05 +00:00
|
|
|
"redux-thunk": "^2.3.0",
|
2020-10-06 13:51:34 +00:00
|
|
|
"sanitize-html": "^2.0.0",
|
2020-10-06 15:43:20 +00:00
|
|
|
"snyk": "^1.410.1",
|
|
|
|
"styled-components": "^5.2.0",
|
|
|
|
"tippy.js": "^4.3.5"
|
2018-08-27 11:41:01 +00:00
|
|
|
},
|
2018-08-27 12:07:32 +00:00
|
|
|
"devDependencies": {
|
2019-07-14 11:47:06 +00:00
|
|
|
"@types/classnames": "^2.2.9",
|
2020-10-06 15:43:20 +00:00
|
|
|
"@types/cytoscape": "^3.14.7",
|
2019-07-23 12:20:34 +00:00
|
|
|
"@types/inflection": "^1.5.28",
|
2020-10-06 15:43:20 +00:00
|
|
|
"@types/jest": "^26.0.14",
|
|
|
|
"@types/lodash": "^4.14.161",
|
|
|
|
"@types/node": "^14.11.5",
|
2020-05-19 13:45:27 +00:00
|
|
|
"@types/numeral": "^0.0.28",
|
2020-10-06 15:43:20 +00:00
|
|
|
"@types/react": "^16.9.51",
|
2020-06-19 10:46:43 +00:00
|
|
|
"@types/react-axe": "^3.1.0",
|
2020-05-19 13:45:27 +00:00
|
|
|
"@types/react-dom": "^16.9.8",
|
2020-10-06 15:43:20 +00:00
|
|
|
"@types/react-redux": "^7.1.9",
|
|
|
|
"@types/react-router-dom": "^5.1.6",
|
|
|
|
"@types/sanitize-html": "^1.27.0",
|
|
|
|
"@types/styled-components": "5.1.3",
|
2020-05-19 13:45:27 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^2.24.0",
|
|
|
|
"@typescript-eslint/parser": "^2.34.0",
|
|
|
|
"eslint-config-airbnb-typescript": "^7.2.1",
|
2020-10-06 15:43:20 +00:00
|
|
|
"eslint-config-prettier": "^6.12.0",
|
|
|
|
"eslint-plugin-import": "^2.22.1",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.3.1",
|
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
|
|
"eslint-plugin-react": "^7.21.3",
|
|
|
|
"eslint-plugin-react-hooks": "^4.1.2",
|
|
|
|
"husky": "^4.3.0",
|
|
|
|
"lint-staged": "^10.4.0",
|
|
|
|
"prettier": "^2.1.2",
|
|
|
|
"react-axe": "3.5.3",
|
2020-10-06 13:51:34 +00:00
|
|
|
"react-scripts": "3.4.3",
|
2020-05-19 13:45:27 +00:00
|
|
|
"typescript": "^3.9.2"
|
2019-04-17 14:44:23 +00:00
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not ie <= 11",
|
|
|
|
"not op_mini all"
|
2020-10-06 13:51:34 +00:00
|
|
|
],
|
|
|
|
"snyk": true
|
2020-04-21 19:30:16 +00:00
|
|
|
}
|