initial commit

This commit is contained in:
2022-12-22 16:38:25 +01:00
commit a3f54bb537
143 changed files with 24386 additions and 0 deletions

79
package.json Normal file
View File

@@ -0,0 +1,79 @@
{
"name": "mastodon",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.0.0",
"@angular/common": "^15.0.0",
"@angular/compiler": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/forms": "^15.0.0",
"@angular/platform-browser": "^15.0.0",
"@angular/platform-browser-dynamic": "^15.0.0",
"@angular/router": "^15.0.0",
"@nebular/auth": "10.0.0",
"@nebular/eva-icons": "^10.0.0",
"@nebular/security": "10.0.0",
"@nebular/theme": "10.0.0",
"@ngrx/effects": "^15.0.0",
"@ngrx/entity": "^15.0.0",
"@ngrx/store": "^15.0.0",
"@ngrx/store-devtools": "^15.0.0",
"axios": "^1.2.1",
"eva-icons": "^1.1.3",
"ngx-progressbar": "^9.0.0",
"oauth": "^0.10.0",
"object-assign-deep": "^0.4.0",
"parse-link-header": "^2.0.0",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^15.0.0-beta.0",
"@angular-devkit/build-angular": "^15.0.3",
"@angular/cli": "~15.0.2",
"@angular/compiler-cli": "^15.0.0",
"@types/jasmine": "~4.3.0",
"@types/oauth": "^0.9.1",
"@types/object-assign-deep": "^0.4.0",
"@types/parse-link-header": "^2.0.0",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^15.0.0",
"typescript": "~4.8.2"
},
"overrides": {
"@nebular/auth@10.0.0": {
"@angular/animations": "15.0.3",
"@angular/cdk": "15.0.0",
"@angular/common": "15.0.3",
"@angular/core": "15.0.3",
"@angular/forms": "15.0.3",
"@angular/router": "15.0.3"
},
"@nebular/theme@10.0.0": {
"@angular/animations": "15.0.3",
"@angular/cdk": "15.0.0",
"@angular/common": "15.0.3",
"@angular/core": "15.0.3",
"@angular/router": "15.0.3"
},
"@nebular/security@10.0.0": {
"@angular/common": "15.0.3",
"@angular/core": "15.0.3",
"@angular/router": "15.0.3"
}
}
}