Skip to content

Commit

Permalink
Sort lines also in packages/**/package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidsi committed Dec 11, 2024
1 parent aa4db14 commit 5a7efa7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions packages/hardhat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"check-types": "tsc --noEmit --incremental",
"compile": "hardhat compile",
"deploy": "hardhat deploy",
"flatten": "hardhat flatten",
"fork": "MAINNET_FORKING_ENABLED=true hardhat node --network hardhat --no-deploy",
"format": "prettier --write './**/*.(ts|sol)'",
"generate": "hardhat run scripts/generateAccount.ts",
"flatten": "hardhat flatten",
"hardhat-verify": "hardhat verify",
"lint": "eslint --config ./.eslintrc.json --ignore-path ./.eslintignore ./*.ts ./deploy/**/*.ts ./scripts/**/*.ts ./test/**/*.ts",
"lint-staged": "eslint --config ./.eslintrc.json --ignore-path ./.eslintignore",
"format": "prettier --write './**/*.(ts|sol)'",
"test": "REPORT_GAS=true hardhat test --network hardhat",
"verify": "hardhat etherscan-verify",
"hardhat-verify": "hardhat verify"
"verify": "hardhat etherscan-verify"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"start": "next dev",
"build": "next build",
"serve": "next start",
"lint": "next lint",
"format": "prettier --write . '!(node_modules|.next|contracts)/**/*'",
"check-types": "tsc --noEmit --incremental",
"dev": "next dev",
"format": "prettier --write . '!(node_modules|.next|contracts)/**/*'",
"lint": "next lint",
"serve": "next start",
"start": "next dev",
"vercel": "vercel",
"vercel:yolo": "vercel --build-env NEXT_PUBLIC_IGNORE_BUILD_ERROR=true"
},
Expand Down

0 comments on commit 5a7efa7

Please sign in to comment.