brewman/overlord/package.json

80 lines
2.2 KiB
JSON
Raw Permalink Normal View History

{
"name": "overlord",
2024-08-19 11:31:17 +00:00
"version": "13.3.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"watch": "ng build --watch --configuration development",
"eslint": "eslint",
2020-10-10 05:27:39 +00:00
"prettier": "prettier",
"husky": "husky"
},
"private": true,
"dependencies": {
2024-05-31 04:43:42 +00:00
"@angular/animations": "^18.0.1",
"@angular/cdk": "^18.0.1",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/material": "^18.0.1",
"@angular/material-moment-adapter": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "^18.0.1",
"@ngx-loading-bar/core": "^6.0.2",
"@ngx-loading-bar/http-client": "^6.0.2",
"@ngx-loading-bar/router": "^6.0.2",
"mathjs": "^13.0.2",
"moment": "^2.30.1",
"rxjs": "~7.8.0",
"tslib": "^2.6.0"
},
"devDependencies": {
2024-05-31 04:43:42 +00:00
"@angular-devkit/build-angular": "^18.0.2",
"@angular/cli": "^18.0.2",
"@angular/compiler-cli": "^18.0.1",
"@angular/language-service": "^18.0.1",
"@types/jasmine": "~5.1.4",
"angular-eslint": "^18.0.1",
"autoprefixer": "^10.4.19",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unused-imports": "^4.0.0",
"husky": "^9.0.11",
2023-07-23 03:31:18 +00:00
"jasmine-core": "~5.1.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
2022-10-31 03:54:06 +00:00
"karma-jasmine": "~5.1.0",
2023-07-23 03:31:18 +00:00
"karma-jasmine-html-reporter": "^2.1.0",
2024-05-31 04:43:42 +00:00
"lint-staged": "^15.2.5",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
2022-07-11 14:42:38 +00:00
"standard-version": "^9.5.0",
"tailwindcss": "^3.4.3",
"typescript": "~5.4.5",
2024-08-16 06:18:08 +00:00
"typescript-eslint": "^8.0.0-alpha.58"
},
"removedDevDepForEslint9": {
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.29.1"
},
"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"
]
}
}