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

Deploy sscheck UI to PROD #57

Merged
merged 10 commits into from
Sep 11, 2024
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ yarn-error.log*
!.yarn/releases
!.yarn/sdks
!.yarn/versions

.venv/
35 changes: 35 additions & 0 deletions .yarn/plugins/@yarnpkg/plugin-outdated.cjs

Large diffs are not rendered by default.

894 changes: 0 additions & 894 deletions .yarn/releases/yarn-4.3.0.cjs

This file was deleted.

925 changes: 925 additions & 0 deletions .yarn/releases/yarn-4.4.1.cjs

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.3.0.cjs
plugins:
- checksum: 5e73a1acbb9741fce1e8335e243c9480ea2107b9b4b65ed7643785ddea9e3019aee254a92a853b1cd71023b16fff5b7d3afd5256fe57cd35a54f8785b8c30281
path: .yarn/plugins/@yarnpkg/plugin-outdated.cjs
spec: "https://go.mskelton.dev/yarn-outdated/v4"

yarnPath: .yarn/releases/yarn-4.4.1.cjs
4 changes: 2 additions & 2 deletions deploy/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
aws-cdk-lib==2.114.1
constructs>=10.0.0
aws-cdk-lib==2.157.0
constructs==10.3.0
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
{
"name": "samplesheet-check-frontend",
"packageManager": "yarn@4.3.0",
"packageManager": "yarn@4.4.1",
"version": "0.1.0",
"private": true,
"dependencies": {
"aws-amplify": "^6.3.6",
"aws-amplify": "^6.6.0",
"eslint-config-react-app": "^7.0.1",
"react": "^18.3.1",
"react-bootstrap": "^2.10.2",
"react-bootstrap": "^2.10.4",
"react-bootstrap-icons": "^1.11.4",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-router-dom": "^6.23.1"
"react-icons": "^5.3.0",
"react-router-dom": "^6.26.2"
},
"scripts": {
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"deploy": "aws s3 rm s3://${REACT_APP_BUCKET_NAME}/ --recursive && aws s3 cp ./build s3://${REACT_APP_BUCKET_NAME}/ --recursive"
"deploy": "aws s3 rm s3://${REACT_APP_BUCKET_NAME}/ --recursive && aws s3 cp ./build s3://${REACT_APP_BUCKET_NAME}/ --recursive",
"audit": "yarn npm audit"
},
"eslintConfig": {
"extends": [
Expand All @@ -26,9 +27,9 @@
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"aws-cdk": "^2.145.0",
"aws-cdk": "^2.157.0",
"react-scripts": "^5.0.1",
"typescript": "^5.4.5"
"typescript": "^5.6.2"
},
"browserslist": {
"production": [
Expand Down
Loading