ng-libs/package.json
2023-12-28 16:46:51 +07:00

54 lines
1.7 KiB
JSON

{
"name": "ng-libs",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "npm run watch",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:ci": "ng test --browsers=ChromeHeadless --watch=false",
"format": "prettier \"**\" --list-different",
"format:fix": "prettier \"**\" --write --log-level warn",
"lint": "eslint \"**\" --max-warnings=0",
"lint:fix": "eslint \"**\" --fix",
"spell": "cspell --no-progress **",
"spell:fix": "cspell --no-progress --show-suggestions --show-context **",
"check": "npm run format && npm run lint && npm run spell",
"fix": "npm run format:fix && npm run lint:fix && npm run spell:fix"
},
"private": true,
"workspaces": [
"./projects/*"
],
"dependencies": {
"@angular/animations": "^17.0.8",
"@angular/common": "^17.0.8",
"@angular/compiler": "^17.0.8",
"@angular/core": "^17.0.8",
"@angular/forms": "^17.0.8",
"@angular/platform-browser": "^17.0.8",
"@angular/platform-browser-dynamic": "^17.0.8",
"@angular/router": "^17.0.8",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.8",
"@angular/cli": "~17.0.8",
"@angular/compiler-cli": "^17.0.8",
"@types/jasmine": "~4.3.0",
"cspell": "^7.0.0",
"eslint": "^8.56.0",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^17.0.3",
"prettier": "^3.1.1",
"typescript": "~5.2.2"
}
}