|
| 1 | +{ |
| 2 | + "name": "@repo/error-handling", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "", |
| 5 | + "main": "index.js", |
| 6 | + "scripts": { |
| 7 | + "build": "tsc -b", |
| 8 | + "build:check": "tsc --noEmit", |
| 9 | + "watch": "tsc -b --watch", |
| 10 | + "fix": "pnpm format && pnpm lint", |
| 11 | + "format": "prettier --write src", |
| 12 | + "format:check": "prettier src --check", |
| 13 | + "lint": "eslint --fix", |
| 14 | + "lint:check": "eslint", |
| 15 | + "check": "pnpm format:check && pnpm lint:check && pnpm build:check", |
| 16 | + "test": "mocha", |
| 17 | + "coverage": "nyc mocha", |
| 18 | + "test:watch": "mocha --watch" |
| 19 | + }, |
| 20 | + "keywords": [], |
| 21 | + "author": "", |
| 22 | + "license": "ISC", |
| 23 | + "dependencies": { |
| 24 | + "http-status-codes": "^2.3.0" |
| 25 | + }, |
| 26 | + "exports": { |
| 27 | + ".": "./dist/index.js" |
| 28 | + }, |
| 29 | + "devDependencies": { |
| 30 | + "@istanbuljs/nyc-config-typescript": "^1.0.2", |
| 31 | + "@repo/eslint-config": "workspace:*", |
| 32 | + "@repo/typescript-config": "workspace:*", |
| 33 | + "@types/chai": "^4.3.17", |
| 34 | + "@types/mocha": "^10.0.7", |
| 35 | + "@types/node": "^16.11.10", |
| 36 | + "chai": "^4.5.0", |
| 37 | + "eslint": "^8.57.0", |
| 38 | + "mocha": "^10.7.0", |
| 39 | + "nyc": "^17.0.0", |
| 40 | + "prettier": "^3.3.3", |
| 41 | + "source-map-support": "^0.5.21", |
| 42 | + "ts-node": "^10.9.2", |
| 43 | + "typescript": "^5.5.4", |
| 44 | + "winston": "^3.13.1" |
| 45 | + } |
| 46 | +} |
0 commit comments