diff --git a/.github/actions/setup_deps/action.yml b/.github/actions/setup_deps/action.yml index cc2285ad0..8cad948b7 100644 --- a/.github/actions/setup_deps/action.yml +++ b/.github/actions/setup_deps/action.yml @@ -6,12 +6,12 @@ runs: - name: Install Node.js uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 cache: "yarn" - name: Install project dependencies shell: bash - run: yarn + run: yarn --production - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 diff --git a/.github/workflows/changesets-prerelease.yml b/.github/workflows/changesets-prerelease.yml index 1fad4a385..2d573d2f4 100644 --- a/.github/workflows/changesets-prerelease.yml +++ b/.github/workflows/changesets-prerelease.yml @@ -28,11 +28,11 @@ jobs: - name: Install Node.js uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 cache: "yarn" - name: Install project dependencies - run: yarn + run: yarn --production - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 diff --git a/.github/workflows/changesets.yml b/.github/workflows/changesets.yml index 5da6b3f93..47c0bda56 100644 --- a/.github/workflows/changesets.yml +++ b/.github/workflows/changesets.yml @@ -18,11 +18,11 @@ jobs: - name: Install Node.js uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 cache: "yarn" - name: Install project dependencies - run: yarn + run: yarn --production - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 879b2facd..2f092511e 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -20,11 +20,11 @@ jobs: - name: Install Node.js uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 cache: "yarn" - name: Install project dependencies - run: yarn + run: yarn --production - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d599b1fea..d8e6f5b64 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,11 +9,11 @@ jobs: - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 cache: "yarn" - name: Install project dependencies - run: yarn + run: yarn --production - name: Run prettier run: yarn run prettier:check diff --git a/package.json b/package.json index 3f7c95fd8..ed8674308 100644 --- a/package.json +++ b/package.json @@ -40,23 +40,21 @@ "@zoralabs/protocol-rewards": "1.1.2", "ds-test": "https://github.com/dapphub/ds-test#cd98eff28324bfac652e63a239a60632a761790b", "forge-std": "https://github.com/foundry-rs/forge-std#705263c95892a906d7af65f0f73ce8a4a0c80b80", - "solmate": "^6.1.0" + "solmate": "^6.1.0", + "es-main": "^1.2.0", + "glob": "^10.2.2", + "solady": "^0.0.123", + "@changesets/cli": "^2.26.1", + "prettier": "^2.8.8", + "prettier-plugin-solidity": "^1.1.3" }, "devDependencies": { - "@changesets/cli": "^2.26.1", "@turnkey/api-key-stamper": "^0.1.1", "@turnkey/http": "^1.2.0", "@turnkey/viem": "^0.2.4", - "@turnkey/webauthn-stamper": "^0.1.0", "@types/node": "^20.1.2", "@wagmi/cli": "^1.0.1", "abitype": "^0.8.7", - "es-main": "^1.2.0", - "glob": "^10.2.2", - "listr2": "^6.4.2", - "prettier": "^2.8.8", - "prettier-plugin-solidity": "^1.1.3", - "solady": "^0.0.123", "tsup": "^7.2.0", "tsx": "^3.13.0", "typescript": "^5.0.4",