Commit e60a89ca authored by RAHUL RATHORE's avatar RAHUL RATHORE
Browse files

feat: shop web angular modify structure #1427

parent 43a8f37e
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
# For additional information regarding the format and rule options, please see:
# https://github.com/browserslist/browserslist#queries

# For the full list of supported browsers by the Angular framework, please see:
# https://angular.io/guide/browser-support

# You can see what browsers were selected by your queries by running:
#   npx browserslist

last 1 Chrome version
last 1 Firefox version
last 2 Edge major versions
last 2 Safari major versions
last 2 iOS major versions
Firefox ESR
+16 −0
Original line number Diff line number Diff line
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false
+4 −1
Original line number Diff line number Diff line
@@ -91,3 +91,6 @@ webpack-cache
.env.prod
/src/environments/environment.ts
/src/environments/environment.prod.ts

# angular files
.angular
 No newline at end of file
+4 −4
Original line number Diff line number Diff line
@@ -15,9 +15,9 @@
						"preserveSymlinks": true,
						"outputPath": "build",
						"index": "src/index.html",
						"main": "src/main.browser.ts",
						"tsConfig": "tsconfig.webpack.json",
						"polyfills": "src/polyfills.browser.ts",
						"main": "src/main.ts",
						"tsConfig": "tsconfig.app.json",
						"polyfills": "src/polyfills.ts",
						"assets": [
							"src/assets",
							"src/favicon.ico",
+5 −5
Original line number Diff line number Diff line
@@ -107,6 +107,7 @@
		"@angular/platform-server": "^12.2.10",
		"@angular/router": "^12.2.10",
		"@angular/service-worker": "^12.2.10",
		"@apollo/client": "^3.5.5",
		"@ever-platform/common": "^0.4.3",
		"@ever-platform/common-angular": "^0.4.3",
		"@fortawesome/angular-fontawesome": "^0.9.0",
@@ -117,19 +118,20 @@
		"@fortawesome/free-solid-svg-icons": "^5.15.4",
		"@ngx-translate/core": "^13.0.0",
		"@ngx-translate/http-loader": "^6.0.0",
		"@types/googlemaps": "^3.30.16",
		"apollo-angular": "^2.6.0",
		"@apollo/client": "^3.5.5",
		"bootstrap": "^4.6.0",
		"browser-detect": "^0.2.28",
		"bson-objectid": "^2.0.1",
		"classlist.js": "^1.1.20150312",
		"core-js": "^3.18.3",
		"css-element-queries": "^1.2.3",
		"eventemitter3": "^4.0.7",
		"follow-redirects": "^1.14.4",
		"fstream": "^1.0.12",
		"graphql": "15.7.2",
		"graphql-tag": "^2.12.6",
		"handlebars": "^4.7.7",
		"http-proxy": "^1.18.1",
		"http-server": "^13.0.2",
		"ie-shim": "^0.1.0",
		"lodash": "^4.17.21",
@@ -145,9 +147,6 @@
		"ngx-infinite-scroll": "^10.0.1",
		"ngx-toastr": "^14.1.3",
		"pm2": "^5.1.2",
		"http-proxy": "^1.18.1",
		"follow-redirects": "^1.14.4",
		"eventemitter3": "^4.0.7",
		"raw-loader": "4.0.2",
		"reflect-metadata": "^0.1.13",
		"rxjs": "^7.4.0",
@@ -170,6 +169,7 @@
		"@angular/cli": "^12.2.10",
		"@angular/compiler-cli": "^12.2.10",
		"@ngtools/webpack": "^12.2.10",
		"@types/googlemaps": "^3.43.3",
		"@types/jasmine": "~3.9.1",
		"@types/jasminewd2": "~2.0.10",
		"@types/node": "^16.11.0",
Loading