astute/AstuteClient2/package.json
Akash Shah 33e86732f9 Started the refacotoring Process:
- Adding ORM
    - *made customer and contact representation so far*
    - make constructor to fill data and any linked tables
    - Set any corresponding types
    - any related objected are added as feilds of the parent object (customer ← customer contact)
        - use object to get related objects whenever possible
            - Ex. Callinc customer.getContacts() instead of the get contacts service.
    - Add astute service calls to ORM's
    - Made grid row data to use same objects as the typescripts retreived data
        - before I was using the promise itself for the rowData, and then keeping a seperate feild to store the actual data returned from the promise. Now, they are both using the data returned from the promise instead.
        - have to take off the `|async` part from the grid options
- AG - Grid clean up
    - Added whaterver column defiintions were missing
    - added default grid options
2020-10-11 15:47:30 -04:00

56 lines
1.5 KiB
JSON

{
"name": "astute-client2",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^8.2.14",
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/forms": "^8.2.14",
"@angular/http": "^7.2.16",
"@angular/platform-browser": "^8.2.14",
"@angular/platform-browser-dynamic": "^8.2.14",
"@angular/router": "^8.2.14",
"@ng-bootstrap/ng-bootstrap": "^5.3.1",
"ag-grid-angular": "^21.2.2",
"ag-grid-community": "^21.2.2",
"angular2-text-mask": "^9.0.0",
"bootstrap": "^4.5.2",
"core-js": "^3.6.5",
"jquery": "^3.5.1",
"popper.js": "^1.16.1",
"rxjs": "^6.6.3",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.801.3",
"@angular/cli": "^8.3.29",
"@angular/compiler-cli": "^8.2.14",
"@angular/language-service": "^8.2.14",
"@types/jasmine": "^3.5.14",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^12.12.63",
"codelyzer": "^5.2.2",
"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.1.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"protractor": "^5.4.4",
"ts-node": "~8.3.0",
"tslint": "~5.18.0",
"typescript": "^3.5.3"
}
}