Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(frontend): pin dependencies #555

Merged
merged 3 commits into from
May 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions atcoder-problems-frontend/.eslintrc.js
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
save-prefix ""
55 changes: 28 additions & 27 deletions atcoder-problems-frontend/package.json
Original file line number Diff line number Diff line change
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"
}
}
Loading