Files
PreMiD/package.json
2024-02-08 23:42:28 +01:00

39 lines
1.0 KiB
JSON

{
"name": "premid",
"version": "1.0.0",
"description": "Monorepo containing most of PreMiD's codebase",
"type": "module",
"scripts": {
"prepare": "husky",
"lint": "eslint . --ext .ts,.js && prettier --check .",
"lint:fix": "eslint . --ext .ts,.js --fix && prettier --write .",
"build": "pnpm clean && tsc -b tsconfig.app.json",
"build:watch": "pnpm clean && tsc -b tsconfig.app.json -w",
"clean": "tsc -b tsconfig.app.json --clean",
"test": "vitest --run",
"test:ui": "vitest --ui"
},
"author": {
"name": "Recodive oHG",
"email": "contact@recodive.com",
"url": "https://recodive.com"
},
"license": "MPL-2.0",
"devDependencies": {
"@recodive/configs": "^1.7.1",
"@recodive/eslint-config": "^1.7.1",
"@rushstack/eslint-patch": "^1.7.2",
"@vitest/coverage-v8": "^1.2.2",
"@vitest/ui": "^1.2.2",
"eslint": "^8.56.0",
"husky": "^9.0.10",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"packageManager": "pnpm@8.14.3",
"engines": {
"node": "^20.0.0"
}
}