ng-libs/package.json
Rinat Arsaev 84ed598f27
Some checks failed
Main / Publish (push) Has been cancelled
Optimize new table (#68)
2024-09-20 13:15:57 +05:00

62 lines
2.0 KiB
JSON

{
"name": "ng-libs",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng build ng-core --watch --configuration development",
"doc": "ng serve --port 4500",
"build": "ng build ng-core && echo \"TODO: ng build ng-libs-doc --base-href='./'\"",
"test": "ng test ng-core",
"test:ci": "npm run test -- --browsers=ChromeHeadless --watch=false",
"format": "prettier \"**\" --list-different",
"format:fix": "prettier \"**\" --write --log-level warn",
"lint": "eslint \"**\" --max-warnings=0 --resolve-plugins-relative-to node_modules/@vality/eslint-config-ng",
"lint:fix": "npm run lint -- --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/*"
],
"repository": {
"type": "git",
"url": "https://github.com/valitydev/ng-libs"
},
"dependencies": {
"@angular/animations": "^18.2.4",
"@angular/common": "^18.2.4",
"@angular/compiler": "^18.2.4",
"@angular/core": "^18.2.4",
"@angular/forms": "^18.2.4",
"@angular/platform-browser": "^18.2.4",
"@angular/platform-browser-dynamic": "^18.2.4",
"@angular/router": "^18.2.4",
"@ng-doc/app": "17.5.5",
"@ng-doc/builder": "17.5.5",
"@ng-doc/core": "17.5.5",
"@ng-doc/ui-kit": "17.5.5",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.4",
"@angular/cli": "~18.2.4",
"@angular/compiler-cli": "^18.2.4",
"@types/jasmine": "~4.3.0",
"cspell": "^8.3.2",
"eslint": "^8.57.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": "^18.0.0",
"prettier": "^3.3.3",
"typescript": "~5.4.5"
}
}