feat(app): initial commit!

This commit is contained in:
twerske
2021-04-19 11:31:29 -07:00
commit 499aeaceaf
50 changed files with 17143 additions and 0 deletions

58
package.json Normal file
View File

@@ -0,0 +1,58 @@
{
"name": "angular-a11y",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "eslint -c .eslintrc.js --ext .ts ./src/",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "~12.0.0-next.9",
"@angular/cdk": "^12.0.0-next.7",
"@angular/common": "^12.0.0-next.9",
"@angular/compiler": "^12.0.0-next.9",
"@angular/core": "^12.0.0-next.9",
"@angular/forms": "^12.0.0-next.9",
"@angular/google-maps": "^11.2.6",
"@angular/material": "^12.0.0-next.7",
"@angular/platform-browser": "^12.0.0-next.9",
"@angular/platform-browser-dynamic": "^12.0.0-next.9",
"@angular/router": "~12.0.0-next.9",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.0.0-next.9",
"@angular/cli": "~12.0.0-next.9",
"@angular/compiler-cli": "~12.0.0-next.9",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"eslint": "^7.6.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.2.3",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"@angular-eslint/builder": "2.0.2",
"@angular-eslint/eslint-plugin": "2.0.2",
"@angular-eslint/eslint-plugin-template": "2.0.2",
"@angular-eslint/schematics": "2.0.2",
"@angular-eslint/template-parser": "2.0.2"
}
}