backend/package.json

80 lines
3.1 KiB
JSON
Raw Normal View History

2019-10-29 13:56:46 +00:00
{
"name": "totopia-backend",
"version": "0.0.0",
"scripts": {
"ng": "ng",
2019-11-07 12:15:26 +00:00
"start": "npm-run-all -p start:app",
"start:watch": "npm-run-all -p start:app start:library start:library-scss",
"start:app": "ng serve",
2019-10-29 13:56:46 +00:00
"build": "ng build",
2019-11-07 12:15:26 +00:00
"build:library:api": "ng build api",
"build:library:api-game": "ng build api-game",
"build:library:api-information": "ng build api-information",
"build:library:api-money": "ng build api-money",
"build:library:api-site": "ng build api-site",
"build:library:api-special": "ng build api-special",
"build:library:api-user": "ng build api-user",
"build:library:ui": "ng build ui && scss-bundle -p ./projects/ui/scss-bundle.config.json",
"build:library:ui-game": "ng build ui-game && scss-bundle -p ./projects/ui-game/scss-bundle.config.json",
"build:library:ui-information": "ng build ui-information && scss-bundle -p ./projects/ui-information/scss-bundle.config.json",
"build:library:ui-money": "ng build ui-money && scss-bundle -p ./projects/ui-money/scss-bundle.config.json",
"build:library:ui-site": "ng build ui-site && scss-bundle -p ./projects/ui-site/scss-bundle.config.json",
"build:library:ui-special": "ng build ui-special && scss-bundle -p ./projects/ui-special/scss-bundle.config.json",
"build:library:ui-user": "ng build ui-user && scss-bundle -p ./projects/ui-user/scss-bundle.config.json",
2019-10-29 13:56:46 +00:00
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "~8.2.12",
2019-11-07 12:15:26 +00:00
"@angular/cdk": "^8.2.3",
2019-10-29 13:56:46 +00:00
"@angular/common": "~8.2.12",
"@angular/compiler": "~8.2.12",
"@angular/core": "~8.2.12",
2019-11-07 14:35:49 +00:00
"@angular/flex-layout": "8.0.0-beta.27",
2019-10-29 13:56:46 +00:00
"@angular/forms": "~8.2.12",
2019-11-07 12:15:26 +00:00
"@angular/material": "^8.2.3",
2019-10-29 13:56:46 +00:00
"@angular/platform-browser": "~8.2.12",
"@angular/platform-browser-dynamic": "~8.2.12",
"@angular/router": "~8.2.12",
2019-11-07 12:15:26 +00:00
"@ngrx/effects": "^8.4.0",
"@ngrx/entity": "^8.4.0",
"@ngrx/router-store": "^8.4.0",
"@ngrx/store": "^8.4.0",
"@ngrx/store-devtools": "^8.4.0",
"hammerjs": "^2.0.8",
2019-11-07 14:35:49 +00:00
"rxjs": "^6.5.3",
2019-10-29 13:56:46 +00:00
"tslib": "^1.10.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
2019-11-07 12:15:26 +00:00
"@angular-devkit/build-angular": "~0.803.15",
"@angular-devkit/build-ng-packagr": "~0.803.15",
2019-10-29 13:56:46 +00:00
"@angular/cli": "~8.3.15",
"@angular/compiler-cli": "~8.2.12",
"@angular/language-service": "~8.2.12",
2019-11-07 12:15:26 +00:00
"@angular-builders/custom-webpack": "^8.2.0",
2019-10-29 13:56:46 +00:00
"@types/node": "~8.9.4",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"codelyzer": "^5.0.0",
2019-11-07 12:15:26 +00:00
"fs-extra": "^8.1.0",
2019-10-29 13:56:46 +00:00
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
2019-11-07 12:15:26 +00:00
"ng-packagr": "^5.4.0",
"npm-run-all": "^4.1.5",
2019-10-29 13:56:46 +00:00
"protractor": "~5.4.0",
2019-11-07 12:15:26 +00:00
"scss-bundle": "^3.0.1",
2019-10-29 13:56:46 +00:00
"ts-node": "~7.0.0",
2019-11-07 12:15:26 +00:00
"tsickle": "^0.37.0",
2019-10-29 13:56:46 +00:00
"tslint": "~5.15.0",
"typescript": "~3.5.3"
}
}