mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-08 03:43:56 -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
50 lines
1.6 KiB
JSON
50 lines
1.6 KiB
JSON
{
|
|
"name": "@consensys/linea-postman",
|
|
"version": "1.0.0",
|
|
"author": "Consensys Software Inc.",
|
|
"license": "Apache-2.0",
|
|
"description": "",
|
|
"main": "dist/src/index.js",
|
|
"types": "dist/src/index.d.ts",
|
|
"scripts": {
|
|
"lint:ts": "npx eslint '**/*.ts'",
|
|
"lint:ts:fix": "npx eslint --fix '**/*.ts'",
|
|
"prettier": "prettier -c '**/*.ts'",
|
|
"prettier:fix": "prettier -w '**/*.ts'",
|
|
"clean": "rimraf dist node_modules coverage tsconfig.build.tsbuildinfo",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"build:runSdk": "tsc ./scripts/runSdk.ts",
|
|
"test": "npx jest --bail --detectOpenHandles --forceExit",
|
|
"lint:fix": "pnpm run lint:ts:fix && pnpm run prettier:fix",
|
|
"migration:create": "npx ts-node -P ./tsconfig.json -r tsconfig-paths/register ./node_modules/typeorm/cli.js migration:create ./src/application/postman/persistence/migrations/${MIGRATION_NAME}"
|
|
},
|
|
"dependencies": {
|
|
"@consensys/linea-native-libs": "workspace:*",
|
|
"@consensys/linea-sdk": "workspace:*",
|
|
"better-sqlite3": "11.6.0",
|
|
"class-validator": "0.14.1",
|
|
"dotenv": "catalog:",
|
|
"ethers": "catalog:",
|
|
"express": "5.1.0",
|
|
"filtrex": "3.1.0",
|
|
"pg": "8.13.1",
|
|
"prom-client": "15.1.3",
|
|
"typeorm": "0.3.20",
|
|
"typeorm-naming-strategies": "4.1.0",
|
|
"winston": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "catalog:",
|
|
"@types/express": "5.0.1",
|
|
"@types/jest": "catalog:",
|
|
"@types/yargs": "catalog:",
|
|
"jest": "catalog:",
|
|
"jest-mock-extended": "catalog:",
|
|
"ts-jest": "catalog:",
|
|
"yargs": "catalog:"
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
]
|
|
}
|