-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from vechainfoundation/11-change-pnpm-to-yarn
feat: changes from pnpm to yarn and fixes readme
- Loading branch information
Showing
12 changed files
with
16,724 additions
and
17,768 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v18.16.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,20 @@ | ||
{ | ||
"private": true, | ||
"workspaces": [ | ||
"apps/*", | ||
"packages/*" | ||
], | ||
"scripts": { | ||
"clean": "turbo run clean; rm -rf node_modules .turbo", | ||
"build": "turbo run build", | ||
"build:deps": "turbo build --no-daemon --filter=react-vendor --filter=wallet-connect", | ||
"install:all": "pnpm i && pnpm run build:deps", | ||
"reinstall": "pnpm clean && pnpm i && pnpm run build:deps", | ||
"clean": "npx turbo@latest run clean && rm -rf node_modules .turbo", | ||
"dev": "turbo run dev --no-daemon", | ||
"start": "turbo run start --no-daemon", | ||
"format": "prettier --write \"**/*.{ts,tsx,md}\"", | ||
"install:all": "yarn && yarn run build:deps", | ||
"lint": "turbo run lint", | ||
"build": "turbo run build", | ||
"test": "turbo run test", | ||
"prepare": "husky install" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/config-conventional": "^18.0.0", | ||
"commitlint": "^18.0.0", | ||
"eslint": "^8.4.1", | ||
"eslint-config-custom": "workspace:*", | ||
"eslint-plugin-prefer-arrow": "1.2.3", | ||
"husky": "^8.0.0", | ||
"lint-staged": "^15.0.2", | ||
"prettier": "^2.5.1", | ||
"tsconfig": "workspace:*", | ||
"turbo": "latest" | ||
"prepare": "husky install", | ||
"reinstall": "yarn clean && yarn && yarn run build:deps", | ||
"test": "turbo run test" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
|
@@ -39,5 +30,30 @@ | |
"eslint" | ||
] | ||
}, | ||
"packageManager": "[email protected]" | ||
"devDependencies": { | ||
"@commitlint/config-conventional": "^18.0.0", | ||
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2", | ||
"@nomicfoundation/hardhat-ethers": "^3.0.4", | ||
"@nomicfoundation/hardhat-network-helpers": "^1.0.9", | ||
"@nomicfoundation/hardhat-verify": "^1.1.1", | ||
"@typechain/ethers-v6": "^0.4.3", | ||
"@typechain/hardhat": "^8.0.3", | ||
"@types/chai": "^4.3.9", | ||
"@types/mocha": "^10.0.3", | ||
"chai": "^4.3.10", | ||
"commitlint": "^18.0.0", | ||
"eslint": "^8.4.1", | ||
"eslint-config-custom": "*", | ||
"eslint-plugin-prefer-arrow": "1.2.3", | ||
"ethers": "^6.8.0", | ||
"hardhat-gas-reporter": "^1.0.9", | ||
"husky": "^8.0.0", | ||
"lint-staged": "^15.0.2", | ||
"prettier": "^2.5.1", | ||
"solidity-coverage": "^0.8.5", | ||
"tsconfig": "*", | ||
"turbo": "latest", | ||
"typechain": "^8.3.2" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"name": "eslint-config-custom", | ||
"license": "MIT", | ||
"version": "0.0.0", | ||
"private": true, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@vercel/style-guide": "^4.0.2", | ||
"eslint-config-turbo": "^1.10.12" | ||
"eslint-config-turbo": "latest" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "tsconfig", | ||
"version": "0.0.0", | ||
"version": "0.0.1", | ||
"private": true, | ||
"license": "MIT", | ||
"files": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.