{ "name": "lamassu-server", "description": "bitcoin atm client server protocol module", "version": "11.0.1", "license": "./LICENSE", "author": "Lamassu (https://lamassu.is)", "packageManager": "pnpm@10.11.0", "repository": { "type": "git", "url": "https://github.com/lamassu/lamassu-server.git" }, "engines": { "node": ">=22.0.0" }, "devDependencies": { "@eslint/css": "^0.7.0", "@eslint/js": "^9.26.0", "@eslint/json": "^0.12.0", "eslint": "^9.26.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-react": "^7.37.5", "eslint-plugin-react-compiler": "^19.1.0-rc.1", "eslint-plugin-vitest": "^0.5.4", "globals": "^16.1.0", "husky": "^8.0.0", "lint-staged": "^16.0.0", "prettier": "^3.5.3", "turbo": "^2.5.3" }, "scripts": { "prepare": "husky install", "build": "turbo build", "dev": "turbo dev", "test": "turbo test" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,jsx,ts,tsx,json,css,scss,md}": [ "prettier --write", "eslint --fix" ] } }