brewman/overlord/package.json

92 lines
2.7 KiB
JSON
Raw Normal View History

{
"name": "overlord",
2020-11-09 07:21:10 +00:00
"version": "8.2.4",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
2020-10-10 05:27:39 +00:00
"e2e": "ng e2e",
"eslint": "eslint",
2020-10-10 05:27:39 +00:00
"prettier": "prettier",
"husky": "husky"
},
"private": true,
"dependencies": {
2020-11-02 18:08:38 +00:00
"@angular/animations": "^10.2.1",
2020-11-03 16:25:34 +00:00
"@angular/cdk": "^10.2.7",
2020-11-02 18:08:38 +00:00
"@angular/common": "^10.2.1",
"@angular/compiler": "^10.2.1",
"@angular/core": "^10.2.1",
"@angular/flex-layout": "^10.0.0-beta.32",
2020-11-02 18:08:38 +00:00
"@angular/forms": "^10.2.1",
2020-11-03 16:25:34 +00:00
"@angular/material": "^10.2.7",
"@angular/material-moment-adapter": "^10.2.7",
2020-11-02 18:08:38 +00:00
"@angular/platform-browser": "^10.2.1",
"@angular/platform-browser-dynamic": "^10.2.1",
"@angular/router": "^10.2.1",
"@ngx-loading-bar/core": "^5.1.0",
"@ngx-loading-bar/http-client": "^5.1.0",
"@ngx-loading-bar/router": "^5.1.0",
"@types/mousetrap": "1.6.3",
"angular2-hotkeys": "^2.2.0",
"core-js": "^3.6.5",
2020-11-02 18:08:38 +00:00
"mathjs": "^7.6.0",
"moment": "^2.29.1",
"rxjs": "^6.6.3",
"tslib": "^2.0.2",
2020-11-03 16:25:34 +00:00
"zone.js": "^0.11.2"
},
"devDependencies": {
2020-11-02 18:08:38 +00:00
"@angular-devkit/build-angular": "~0.1002.0",
"@angular-eslint/builder": "^0.6.0-beta.0",
"@angular-eslint/eslint-plugin": "^0.6.0-beta.0",
"@angular-eslint/eslint-plugin-template": "^0.6.0-beta.0",
"@angular-eslint/schematics": "^0.6.0-beta.0",
"@angular-eslint/template-parser": "^0.6.0-beta.0",
"@angular/cli": "^10.2.0",
"@angular/compiler-cli": "^10.2.1",
"@angular/language-service": "^10.2.1",
"@types/jasmine": "^3.6.0",
"@types/jasminewd2": "^2.0.3",
2020-11-23 11:12:54 +00:00
"@types/mathjs": "^6.0.7",
2020-11-02 18:08:38 +00:00
"@types/node": "^14.14.6",
2020-11-03 16:25:34 +00:00
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"codelyzer": "^6.0.1",
2020-11-02 18:08:38 +00:00
"eslint": "^7.12.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
2020-11-02 18:08:38 +00:00
"eslint-plugin-jsdoc": "^30.7.6",
"husky": "^4.3.0",
"jasmine-core": "^3.6.0",
"jasmine-spec-reporter": "^6.0.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.0",
2020-11-02 18:08:38 +00:00
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"protractor": "~7.0.0",
"standard-version": "^9.0.0",
"ts-node": "^9.0.0",
2020-11-02 18:08:38 +00:00
"typescript": "^4.0.5"
},
"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"
]
}
}