mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.7 KiB
99 lines
2.7 KiB
{
|
|
"scripts": {
|
|
"start": "ng serve dev-app",
|
|
"ng": "ng",
|
|
"test": "ng test",
|
|
"symlink": "symlink",
|
|
"abpng": "abpng",
|
|
"commit": "git-cz && node scripts/push.js",
|
|
"lint": "ng lint --fix",
|
|
"build:scripts": "cd scripts && npm install && npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@abp/ng.core": "^0.9.0",
|
|
"@abp/ng.feature-management": "^0.9.0",
|
|
"@abp/ng.permission-management": "^0.9.0",
|
|
"@abp/ng.theme.shared": "^0.9.0",
|
|
"@angular-builders/jest": "^8.2.0",
|
|
"@angular-devkit/build-angular": "~0.803.6",
|
|
"@angular-devkit/build-ng-packagr": "~0.803.6",
|
|
"@angular/animations": "~8.2.8",
|
|
"@angular/cdk": "^8.0.1",
|
|
"@angular/cli": "~8.3.6",
|
|
"@angular/common": "~8.1.2",
|
|
"@angular/compiler": "~8.2.8",
|
|
"@angular/compiler-cli": "~8.2.8",
|
|
"@angular/core": "~8.1.2",
|
|
"@angular/forms": "~8.1.2",
|
|
"@angular/language-service": "~8.2.8",
|
|
"@angular/platform-browser": "~8.2.8",
|
|
"@angular/platform-browser-dynamic": "~8.2.8",
|
|
"@angular/router": "~8.1.2",
|
|
"@ng-bootstrap/ng-bootstrap": "^5.1.0",
|
|
"@ngneat/spectator": "^4.4.0",
|
|
"@ngx-validate/core": "^0.0.7",
|
|
"@ngxs/devtools-plugin": "^3.5.1",
|
|
"@ngxs/router-plugin": "^3.5.0",
|
|
"@ngxs/storage-plugin": "^3.5.0",
|
|
"@ngxs/store": "^3.5.0",
|
|
"@types/jest": "^24.0.18",
|
|
"@types/node": "~8.9.4",
|
|
"angular-oauth2-oidc": "^8.0.1",
|
|
"bootstrap": "^4.3.1",
|
|
"chart.js": "^2.8.0",
|
|
"codelyzer": "^5.1.2",
|
|
"cz-conventional-changelog": "3.0.2",
|
|
"font-awesome": "^4.7.0",
|
|
"husky": "^3.0.7",
|
|
"jest": "^24.9.0",
|
|
"jest-preset-angular": "^7.1.1",
|
|
"just-clone": "3.1.0",
|
|
"just-compare": "^1.3.0",
|
|
"lint-staged": "^9.4.0",
|
|
"ng-packagr": "^5.5.0",
|
|
"ngx-perfect-scrollbar": "^8.0.0",
|
|
"ngxs-reset-plugin": "^1.2.0",
|
|
"prettier": "^1.18.2",
|
|
"primeicons": "^2.0.0",
|
|
"primeng": "^8.0.3",
|
|
"protractor": "~5.4.0",
|
|
"rxjs": "~6.4.0",
|
|
"snq": "^1.0.3",
|
|
"symlink-manager": "^1.3.0",
|
|
"ts-node": "~7.0.0",
|
|
"tsickle": "^0.37.0",
|
|
"tslint": "~5.20.0",
|
|
"typescript": "~3.5.3",
|
|
"zone.js": "~0.9.1",
|
|
"@abp/ng.account.config": "^0.9.0",
|
|
"@abp/ng.identity.config": "0.9.0",
|
|
"@abp/ng.tenant-management.config": "^0.9.0",
|
|
"@abp/ng.setting-management.config": "^0.9.0"
|
|
},
|
|
"dependencies": {
|
|
"tslib": "^1.10.0"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,js,html,json,md,yaml,yml}": [
|
|
"prettier --write",
|
|
"git add"
|
|
],
|
|
"*.ts": [
|
|
"prettier --write",
|
|
"tslint --fix",
|
|
"git add"
|
|
],
|
|
"dist/*": []
|
|
}
|
|
}
|