Files
barker/bookie/package.json
T
tanshu d90c1cb563 Moved from moment to luxon.
Report Printing is not a post not a get.
2026-08-31 04:19:05 +00:00

62 lines
1.5 KiB
JSON

{
"name": "bookie",
"version": "14.5.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"watch": "ng build --watch --configuration development"
},
"private": true,
"dependencies": {
"@angular/cdk": "^22.1.1",
"@angular/common": "^22.1.1",
"@angular/compiler": "^22.1.1",
"@angular/core": "^22.1.1",
"@angular/forms": "^22.1.1",
"@angular/material": "^22.1.1",
"@angular/material-luxon-adapter": "^22.1.4",
"@angular/platform-browser": "^22.1.1",
"@angular/router": "^22.1.1",
"@types/luxon": "^3.7.5",
"luxon": "^3.7.2",
"mathjs": "^15.1.0",
"rxjs": "~7.8.0",
"tslib": "^2.6.0"
},
"devDependencies": {
"@angular/build": "^22.1.3",
"@angular/cli": "^22.1.3",
"@angular/compiler-cli": "^22.1.1",
"@eslint/js": "^10.0.1",
"angular-eslint": "^22.1.0",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-perfectionist": "^5.4.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"prettier": "^3.4.2",
"standard-version": "^9.5.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.33.1",
"vitest": "^4.0.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.{js,jsx,ts,tsx}": [
"npx prettier --write"
],
"./src/*.{js,jsx,ts,tsx, css, html}": [
"npx eslint --cache --fix"
]
}
}