Files
angor-hub-old/angular.json
Milad Raeisi 36146b3f28 Add Events support (#41)
* Update profile.component.html

* Prepare event box and comment box for receiving and sending events and comments.

* Add like, share and event preview UI to events

* Add event box

* Update user.ts

* Update post.ts

* Update notification.service.ts

* Update metadata.service.ts

* Update event.service.ts

* Update notifications.component.ts

* Update profile.component.ts

* Update profile.component.html

* Load user events

* Fix UI

* Add new service to get events

* Update event service

* Update event service

* Update event service

* Update publishEventToWriteRelays

* Update event service

* Clean and format code

* Change events UI

* Update event service

* Update event service

* Update event UI

* Update profile.component.html

* Add event list component and update profile
2024-10-12 02:15:17 +04:00

140 lines
5.5 KiB
JSON

{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"angor": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-builders/custom-webpack:browser",
"options": {
"outputPath": "dist",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"allowedCommonJsDependencies": [
"apexcharts",
"crypto-js/enc-utf8",
"crypto-js/hmac-sha256",
"crypto-js/enc-base64",
"quill-delta",
"buffer",
"localforage",
"moment",
"bech32",
"bn.js",
"qrcode",
"dayjs",
"dayjs/plugin/relativeTime"
],
"assets": [
{
"glob": "**/*",
"input": "public"
},
{
"glob": "_redirects",
"input": "src",
"output": "/"
}
],
"stylePreprocessorOptions": {
"includePaths": ["src/@angor/styles"]
},
"styles": [
"src/@angor/styles/tailwind.scss",
"src/@angor/styles/themes.scss",
"src/styles/vendors.scss",
"src/@angor/styles/main.scss",
"src/styles/styles.scss",
"src/styles/tailwind.scss"
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "3mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "75kb",
"maximumError": "90kb"
}
],
"outputHashing": "all",
"serviceWorker": true,
"ngswConfigPath": "ngsw-config.json"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-builders/custom-webpack:dev-server",
"configurations": {
"production": {
"buildTarget": "angor:build:production"
},
"development": {
"buildTarget": "angor:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-builders/custom-webpack:extract-i18n"
},
"test": {
"builder": "@angular-builders/custom-webpack:karma",
"options": {
"polyfills": ["zone.js", "zone.js/testing"],
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"assets": [
{
"glob": "**/*",
"input": "public"
}
],
"styles": ["src/styles/styles.scss"],
"scripts": []
}
},
"deploy": {
"builder": "angular-cli-ghpages:deploy",
"options": {
"name": "miladsoft",
"email": "miladsoft@yahoo.com",
"baseHref": "/",
"dir": "dist",
"repo": "https://github.com/block-core/angor-hub.git",
"cname": "hub.angor.io"
}
}
}
}
},
"cli": {
"analytics": "ca2ac0bc-0558-4b9d-b46e-815b90f23eb6"
}
}