Skip to content

Commit

Permalink
fix: dependency issues
Browse files Browse the repository at this point in the history
  • Loading branch information
amessbee committed Aug 7, 2024
1 parent 5772b05 commit 2f689ac
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
9 changes: 5 additions & 4 deletions contract/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"build": "agoric run scripts/build-contract-deployer.js",
"test": "ava --verbose",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint --fix '**/*.js'"
"lint:fix": "eslint --fix '**/*.js'",
"make:waitForBlocks": "make wait-for-blocks"
},
"devDependencies": {
"@agoric/deploy-script-support": "^0.10.4-u12.0",
Expand Down Expand Up @@ -45,12 +46,12 @@
"typescript": "~5.2.2"
},
"dependencies": {
"@agoric/zone": "^0.2.3-u14.0",
"@agoric/zone": "0.2.3-u12.0",
"@agoric/ertp": "^0.16.3-u12.0",
"@agoric/zoe": "^0.26.3-u12.0",
"@endo/far": "^0.2.22",
"@endo/marshal": "^0.8.9",
"@endo/patterns": "^1.4.0"
"@endo/patterns": "^0.2.5"
},
"ava": {
"files": [
Expand Down Expand Up @@ -83,4 +84,4 @@
"arrowParens": "avoid",
"singleQuote": true
}
}
}
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@
"lint": "yarn workspaces run lint",
"test": "yarn workspaces run test",
"test:e2e": "yarn workspace offer-up-ui test:e2e",
"build": "yarn workspaces run build"
"build": "yarn workspaces run build",
"runWaitForBlocks": "cd contract && yarn make:waitForBlocks"
},
"devDependencies": {
"@agoric/synpress": "^3.8.1",
Expand All @@ -56,5 +57,6 @@
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-ui-testing": "^2.0.1",
"serve": "^14.2.1"
}
}
},
"dependencies": {}
}
6 changes: 5 additions & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,13 @@
"vitest": "^1.2.1",
"zustand": "^4.4.1"
},
"resolutions": {
"**/ses": "^1.3.0",
"**/@agoric/xsnap": "0.14.3-dev-9f085d3.0"
},
"prettier": {
"trailingComma": "all",
"arrowParens": "avoid",
"singleQuote": true
}
}
}

0 comments on commit 2f689ac

Please sign in to comment.