mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-07 22:54:08 -05:00
* initial tsconfig.json consolidation * consolidate skipLibCheck * more consolidate tsconfig.json * remove strict duplicates * remove strict duplicates * removed lib * more changes * more changes * more changes * centralize noEmit * run pnpm dedupe * catalog for ethers and dotenv * Revert "catalog for ethers and dotenv" This reverts commit 8fc18db1c6f754ecbf1b175b34f6ebf08837068a. * first catalog * added more dependencies to catalog * apply catalog to many dev dependencies * ethers in catalog * finetune ethers version * fixes * empty
35 lines
1.3 KiB
JSON
35 lines
1.3 KiB
JSON
{
|
|
"name": "e2e",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lint:ts": "npx eslint '**/*.{js,ts}'",
|
|
"lint:ts:fix": "npx eslint --fix '**/*.{js,ts}'",
|
|
"prettier": "prettier -c '**/*.{js,ts}'",
|
|
"prettier:fix": "prettier -w '**/*.{js,ts}'",
|
|
"test:e2e:local": "TEST_ENV=local npx jest",
|
|
"test:e2e:dev": "TEST_ENV=dev npx jest --config ./jest.testnet.config.ts --bail --runInBand --testPathIgnorePatterns=restart.spec.ts",
|
|
"test:e2e:sepolia": "TEST_ENV=sepolia npx jest --config ./jest.testnet.config.ts --bail --runInBand --testPathIgnorePatterns=restart.spec.ts",
|
|
"postinstall": "typechain --target ethers-v6 --out-dir ./src/typechain '../contracts/local-deployments-artifacts/**/*.json'",
|
|
"lint:fix": "pnpm run lint:ts:fix && pnpm run prettier:fix",
|
|
"clean": "rimraf node_modules src/typechain"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@jest/globals": "catalog:",
|
|
"@openzeppelin/upgrades-core": "1.42.1",
|
|
"@typechain/ethers-v6": "catalog:",
|
|
"@types/jest": "catalog:",
|
|
"async-mutex": "^0.5.0",
|
|
"child_process": "1.0.2",
|
|
"dotenv": "catalog:",
|
|
"ethers": "catalog:",
|
|
"jest": "catalog:",
|
|
"ts-jest": "catalog:",
|
|
"typechain": "catalog:",
|
|
"winston": "catalog:"
|
|
}
|
|
}
|