Files
PreMiD/package.json
Florian Metz 0877e706d2 wip: api
2024-04-02 00:23:24 +02:00

42 lines
1.1 KiB
JSON

{
"name": "premid",
"version": "1.0.0",
"description": "Monorepo containing most of PreMiD's codebase",
"type": "module",
"scripts": {
"prepare": "husky",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --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": {
"@commitlint/cli": "^18.6.0",
"@recodive/configs": "^1.7.5",
"@recodive/eslint-config": "^1.8.4",
"@rushstack/eslint-patch": "^1.7.2",
"@types/node": "^20.11.17",
"@vitest/coverage-v8": "^1.2.2",
"@vitest/ui": "^1.2.2",
"bumpp": "^9.3.0",
"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"
}
}