I am using angular. It was an Angular 12 application that I added Ionic to. When I do not include the CDN lines in the index.html then everything that is Ionic has no styling or functionality.
here is my packages.json
{
"name": "appName",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^12.2.4",
"@angular/cdk": "^12.2.4",
"@angular/common": "^12.2.4",
"@angular/compiler": "^12.2.4",
"@angular/core": "^12.2.4",
"@angular/forms": "^12.2.4",
"@angular/google-maps": "^12.2.10",
"@angular/material": "^12.2.4",
"@angular/platform-browser": "^12.2.4",
"@angular/platform-browser-dynamic": "^12.2.4",
"@angular/router": "^12.2.4",
"@angular/service-worker": "^12.2.4",
"@capacitor/android": "3.2.3",
"@capacitor/angular": "^1.0.3",
"@capacitor/camera": "^1.1.2",
"@capacitor/core": "^3.2.3",
"@capacitor/device": "^1.0.4",
"@capacitor/geolocation": "^1.1.2",
"@capacitor/ios": "3.2.3",
"@capacitor/push-notifications": "^1.0.4",
"@ionic-native/file": "^5.36.0",
"@ionic-native/file-opener": "^5.36.0",
"@ionic/angular": "^5.8.1",
"@ionic/angular-toolkit": "^4.0.0",
"@ionic/core": "^5.8.5",
"@ionic/pwa-elements": "^3.0.2",
"@ngrx/effects": "^12.4.0",
"@ngrx/store": "^12.4.0",
"@ngrx/store-devtools": "^12.4.0",
"@types/signalr": "^2.2.36",
"bootstrap": "^4.4.1",
"canvas": "^2.5.0",
"cordova-plugin-file": "^6.0.2",
"cordova-plugin-file-opener2": "^3.0.5",
"core-js": "^2.6.11",
"devextreme": "^19.2.7",
"devextreme-angular": "^19.2.7",
"guid-typescript": "^1.0.9",
"jetifier": "^2.0.0",
"jquery": "^3.4.1",
"material-design-icons": "^3.0.1",
"material-icons": "^0.3.1",
"ngx-bootstrap": "^3.2.0",
"ngx-color": "^5.0.2",
"popper": "^1.0.1",
"rxjs": "~6.5.4",
"signalr": "^2.4.1",
"swiper": "^7.0.9",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.2.3",
"@angular/cli": "^12.2.3",
"@angular/compiler-cli": "^12.2.4",
"@angular/language-service": "^12.2.4",
"@capacitor/cli": "^3.2.3",
"@types/adal": "^1.0.29",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/jquery": "^2.0.53",
"@types/node": "^12.12.34",
"codelyzer": "^6.0.0",
"devextreme-cli": "latest",
"devextreme-themebuilder": "^19.2.7",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"ts-node": "~7.0.0",
"tslint": "~6.1.0",
"typescript": "~4.3.5"
}
}