Skip to content

Commit 54ed8ae

Browse files
author
Steve Hobbs
committedJul 9, 2020
initial commit
0 parents  commit 54ed8ae

9 files changed

+5121
-0
lines changed
 

‎.editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Editor configuration, see https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.ts]
12+
quote_type = single
13+
14+
[*.md]
15+
max_line_length = off
16+
trim_trailing_whitespace = false

‎.gitignore

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
# Only exists if Bazel was run
8+
/bazel-out
9+
10+
# dependencies
11+
/node_modules
12+
13+
# profiling files
14+
chrome-profiler-events*.json
15+
speed-measure-plugin*.json
16+
17+
# IDEs and editors
18+
/.idea
19+
.project
20+
.classpath
21+
.c9/
22+
*.launch
23+
.settings/
24+
*.sublime-workspace
25+
26+
# IDE - VSCode
27+
.vscode/*
28+
!.vscode/settings.json
29+
!.vscode/tasks.json
30+
!.vscode/launch.json
31+
!.vscode/extensions.json
32+
.history/*
33+
34+
# misc
35+
/.sass-cache
36+
/connect.lock
37+
/coverage
38+
/libpeerconnection.log
39+
npm-debug.log
40+
yarn-error.log
41+
testem.log
42+
/typings
43+
44+
# System Files
45+
.DS_Store
46+
Thumbs.db

‎README.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Auth0Angular
2+
3+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 10.0.1.
4+
5+
## Development server
6+
7+
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
8+
9+
## Code scaffolding
10+
11+
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
12+
13+
## Build
14+
15+
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
16+
17+
## Running unit tests
18+
19+
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
20+
21+
## Running end-to-end tests
22+
23+
Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
24+
25+
## Further help
26+
27+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).

‎angular.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {}
6+
}

‎package-lock.json

+4,811
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "auth0-angular",
3+
"version": "0.0.0",
4+
"scripts": {
5+
"ng": "ng",
6+
"start": "ng serve",
7+
"build": "ng build",
8+
"test": "ng test",
9+
"lint": "ng lint",
10+
"e2e": "ng e2e"
11+
},
12+
"private": true,
13+
"dependencies": {
14+
"@angular/animations": "~10.0.2",
15+
"@angular/common": "~10.0.2",
16+
"@angular/compiler": "~10.0.2",
17+
"@angular/core": "~10.0.2",
18+
"@angular/forms": "~10.0.2",
19+
"@angular/platform-browser": "~10.0.2",
20+
"@angular/platform-browser-dynamic": "~10.0.2",
21+
"@angular/router": "~10.0.2",
22+
"rxjs": "~6.5.5",
23+
"tslib": "^2.0.0",
24+
"zone.js": "~0.10.3"
25+
},
26+
"devDependencies": {
27+
"@angular/cli": "~10.0.1",
28+
"@angular/compiler-cli": "~10.0.2",
29+
"@types/node": "^12.11.1",
30+
"@types/jasmine": "~3.5.0",
31+
"@types/jasminewd2": "~2.0.3",
32+
"codelyzer": "^6.0.0-next.1",
33+
"jasmine-core": "~3.5.0",
34+
"jasmine-spec-reporter": "~5.0.0",
35+
"karma": "~5.0.0",
36+
"karma-chrome-launcher": "~3.1.0",
37+
"karma-coverage-istanbul-reporter": "~3.0.2",
38+
"karma-jasmine": "~3.3.0",
39+
"karma-jasmine-html-reporter": "^1.5.0",
40+
"protractor": "~7.0.0",
41+
"ts-node": "~8.3.0",
42+
"tslint": "~6.1.0",
43+
"typescript": "~3.9.5"
44+
}
45+
}

‎tsconfig.base.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/* To learn more about this file see: https://angular.io/config/tsconfig. */
2+
{
3+
"compileOnSave": false,
4+
"compilerOptions": {
5+
"baseUrl": "./",
6+
"outDir": "./dist/out-tsc",
7+
"sourceMap": true,
8+
"declaration": false,
9+
"downlevelIteration": true,
10+
"experimentalDecorators": true,
11+
"moduleResolution": "node",
12+
"importHelpers": true,
13+
"target": "es2015",
14+
"module": "es2020",
15+
"lib": [
16+
"es2018",
17+
"dom"
18+
]
19+
}
20+
}

‎tsconfig.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience.
3+
It is not intended to be used to perform a compilation.
4+
5+
To learn more about this file see: https://angular.io/config/solution-tsconfig.
6+
*/
7+
{
8+
"files": [],
9+
"references": []
10+
}

‎tslint.json

+140
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
{
2+
"extends": "tslint:recommended",
3+
"rulesDirectory": [
4+
"codelyzer"
5+
],
6+
"rules": {
7+
"align": {
8+
"options": [
9+
"parameters",
10+
"statements"
11+
]
12+
},
13+
"array-type": false,
14+
"arrow-return-shorthand": true,
15+
"curly": true,
16+
"deprecation": {
17+
"severity": "warning"
18+
},
19+
"eofline": true,
20+
"import-blacklist": [
21+
true,
22+
"rxjs/Rx"
23+
],
24+
"import-spacing": true,
25+
"indent": {
26+
"options": [
27+
"spaces"
28+
]
29+
},
30+
"max-classes-per-file": false,
31+
"max-line-length": [
32+
true,
33+
140
34+
],
35+
"member-ordering": [
36+
true,
37+
{
38+
"order": [
39+
"static-field",
40+
"instance-field",
41+
"static-method",
42+
"instance-method"
43+
]
44+
}
45+
],
46+
"no-console": [
47+
true,
48+
"debug",
49+
"info",
50+
"time",
51+
"timeEnd",
52+
"trace"
53+
],
54+
"no-empty": false,
55+
"no-inferrable-types": [
56+
true,
57+
"ignore-params"
58+
],
59+
"no-non-null-assertion": true,
60+
"no-redundant-jsdoc": true,
61+
"no-switch-case-fall-through": true,
62+
"no-var-requires": false,
63+
"object-literal-key-quotes": [
64+
true,
65+
"as-needed"
66+
],
67+
"quotemark": [
68+
true,
69+
"single"
70+
],
71+
"semicolon": {
72+
"options": [
73+
"always"
74+
]
75+
},
76+
"space-before-function-paren": {
77+
"options": {
78+
"anonymous": "never",
79+
"asyncArrow": "always",
80+
"constructor": "never",
81+
"method": "never",
82+
"named": "never"
83+
}
84+
},
85+
"typedef": [
86+
true,
87+
"call-signature"
88+
],
89+
"typedef-whitespace": {
90+
"options": [
91+
{
92+
"call-signature": "nospace",
93+
"index-signature": "nospace",
94+
"parameter": "nospace",
95+
"property-declaration": "nospace",
96+
"variable-declaration": "nospace"
97+
},
98+
{
99+
"call-signature": "onespace",
100+
"index-signature": "onespace",
101+
"parameter": "onespace",
102+
"property-declaration": "onespace",
103+
"variable-declaration": "onespace"
104+
}
105+
]
106+
},
107+
"variable-name": {
108+
"options": [
109+
"ban-keywords",
110+
"check-format",
111+
"allow-pascal-case"
112+
]
113+
},
114+
"whitespace": {
115+
"options": [
116+
"check-branch",
117+
"check-decl",
118+
"check-operator",
119+
"check-separator",
120+
"check-type",
121+
"check-typecast"
122+
]
123+
},
124+
"component-class-suffix": true,
125+
"contextual-lifecycle": true,
126+
"directive-class-suffix": true,
127+
"no-conflicting-lifecycle": true,
128+
"no-host-metadata-property": true,
129+
"no-input-rename": true,
130+
"no-inputs-metadata-property": true,
131+
"no-output-native": true,
132+
"no-output-on-prefix": true,
133+
"no-output-rename": true,
134+
"no-outputs-metadata-property": true,
135+
"template-banana-in-box": true,
136+
"template-no-negated-async": true,
137+
"use-lifecycle-interface": true,
138+
"use-pipe-transform-interface": true
139+
}
140+
}

0 commit comments

Comments
 (0)
Please sign in to comment.