Skip to content

Commit

Permalink
Merge pull request #555 from rdrgn/554-pin-dependencies
Browse files Browse the repository at this point in the history
build(frontend): pin dependencies
  • Loading branch information
kenkoooo committed May 17, 2020
2 parents 582254a + c367807 commit 47afa80
Show file tree
Hide file tree
Showing 4 changed files with 219 additions and 98 deletions.
2 changes: 2 additions & 0 deletions atcoder-problems-frontend/.eslintrc.js
Expand Up @@ -38,6 +38,8 @@ module.exports = {
"react/prop-types": 0, // we do not employ 'prop-types'
"@typescript-eslint/camelcase": 0, // API responses contain snake_case properties
"@typescript-eslint/explicit-function-return-type": 0, // enable the rule in "overrides"
// TODO: enable the following rules in the future
"require-atomic-updates": 0, // https://github.com/eslint/eslint/issues/11899
},
settings: {
react: { version: "detect" },
Expand Down
1 change: 1 addition & 0 deletions atcoder-problems-frontend/.yarnrc
@@ -0,0 +1 @@
save-prefix ""
55 changes: 28 additions & 27 deletions atcoder-problems-frontend/package.json
Expand Up @@ -21,40 +21,41 @@
"not op_mini all"
],
"dependencies": {
"@primer/octicons-react": "^9.6.0",
"bootstrap": "^4.3.1",
"immutable": "^4.0.0-rc.12",
"moment": "^2.24.0",
"react": "^16.8.3",
"react-bootstrap-table": "^4.3.1",
"react-dom": "^16.8.3",
"react-measure": "^2.2.4",
"@primer/octicons-react": "9.6.0",
"bootstrap": "4.3.1",
"immutable": "4.0.0-rc.12",
"moment": "2.24.0",
"react": "16.8.3",
"react-bootstrap-table": "4.3.1",
"react-dom": "16.8.3",
"react-measure": "2.2.4",
"react-refetch": "4.0.0-0",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.0",
"reactstrap": "^8.2.0",
"recharts": "^2.0.0-beta.1"
"react-router-dom": "5.1.2",
"react-scripts": "3.4.0",
"reactstrap": "8.2.0",
"recharts": "2.0.0-beta.1"
},
"devDependencies": {
"@types/jest": "24.0.23",
"@types/node": "12.12.14",
"@types/react": "16.9.15",
"@types/react-bootstrap-table": "^4.3.7",
"@types/react-bootstrap-table": "4.3.7",
"@types/react-dom": "16.9.4",
"@types/react-measure": "^2.0.5",
"@types/react-router-dom": "^5.1.3",
"@types/reactstrap": "^8.2.0",
"@types/recharts": "^1.1.14",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react-hooks": "^4.0.2",
"http-proxy-middleware": "^0.20.0",
"prettier": "^2.0.5",
"sort-package-json": "^1.42.2",
"@types/react-measure": "2.0.5",
"@types/react-router-dom": "5.1.3",
"@types/reactstrap": "8.2.0",
"@types/recharts": "1.1.14",
"@typescript-eslint/eslint-plugin": "2.33.0",
"@typescript-eslint/parser": "2.33.0",
"eslint": "6.6.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.2",
"http-proxy-middleware": "0.20.0",
"prettier": "2.0.5",
"sort-package-json": "1.42.2",
"typescript": "3.7.3"
}
}

0 comments on commit 47afa80

Please sign in to comment.