removed unsued deps

pull/3554/head
Jamie Rees 5 years ago
parent 6cef4f4cc4
commit 167d2854cb

@ -1,113 +1,106 @@
{ {
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1, "version": 1,
"newProjectRoot": "projects", "newProjectRoot": "projects",
"projects": { "projects": {
"ombi": { "ombi": {
"root": "", "root": "",
"sourceRoot": "src", "sourceRoot": "src",
"projectType": "application", "projectType": "application",
"prefix": "app", "prefix": "app",
"schematics": {}, "schematics": {},
"architect": { "architect": {
"build": { "build": {
"builder": "@angular-devkit/build-angular:browser", "builder": "@angular-devkit/build-angular:browser",
"options": { "options": {
"progress": true, "progress": true,
"extractCss": true, "extractCss": true,
"outputPath": "dist", "outputPath": "dist",
"index": "src/index.html", "index": "src/index.html",
"main": "src/main.ts", "main": "src/main.ts",
"polyfills": "src/polyfills.ts", "polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.app.json", "tsConfig": "src/tsconfig.app.json",
"assets": [ "assets": [
"src/assets" "src/assets"
], ],
"styles": [ "styles": [
"src/styles/_imports.scss", "src/styles/_imports.scss",
"node_modules/bootstrap/scss/bootstrap.scss", "node_modules/bootstrap/scss/bootstrap.scss",
"node_modules/angular-bootstrap-md/scss/mdb-free.scss", "node_modules/font-awesome/scss/font-awesome.scss",
"node_modules/pace/themes/orange/pace-theme-flat-top.css", "node_modules/primeng/resources/primeng.min.css",
"node_modules/font-awesome/scss/font-awesome.scss", "node_modules/primeicons/primeicons.css",
"node_modules/primeng/resources/primeng.min.css", "node_modules/please-wait/src/please-wait.scss",
"node_modules/primeng/resources/themes/nova-light/theme.css", "node_modules/@fullcalendar/core/main.min.css",
"node_modules/primeicons/primeicons.css", "node_modules/spinkit/scss/spinners/11-folding-cube.scss",
"node_modules/please-wait/src/please-wait.scss", "node_modules/spinkit/scss/spinkit.scss"
"node_modules/@fullcalendar/core/main.min.css", ],
"node_modules/spinkit/scss/spinners/11-folding-cube.scss", "scripts": [
"node_modules/spinkit/scss/spinkit.scss" "node_modules/jquery/dist/jquery.min.js",
], "node_modules/chart.js/dist/Chart.js",
"scripts": [ "node_modules/hammerjs/hammer.min.js",
"node_modules/jquery/dist/jquery.min.js", "./node_modules/@fullcalendar/core/main.js",
"node_modules/chart.js/dist/Chart.js", "./node_modules/@fullcalendar/interaction/main.js"
"node_modules/hammerjs/hammer.min.js", ]
"./node_modules/@fullcalendar/core/main.js", },
"./node_modules/@fullcalendar/interaction/main.js" "configurations": {
] "production": {
}, "fileReplacements": [{
"configurations": { "replace": "src/environments/environment.ts",
"production": { "with": "src/environments/environment.prod.ts"
"fileReplacements": [ }],
{ "optimization": true,
"replace": "src/environments/environment.ts", "outputHashing": "all",
"with": "src/environments/environment.prod.ts" "sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
},
"hmr": {
"fileReplacements": [{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.hmr.ts"
}]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "ombi:build"
},
"configurations": {
"production": {
"browserTarget": "ombi:build:production"
},
"hmr": {
"hmr": true,
"browserTarget": "ombi:build:hmr",
"hmrWarning": false
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ombi:build"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json"
],
"exclude": [
"**/node_modules/**"
]
}
} }
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
},
"hmr": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.hmr.ts"
}
]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "ombi:build"
},
"configurations": {
"production": {
"browserTarget": "ombi:build:production"
},
"hmr": {
"hmr": true,
"browserTarget": "ombi:build:hmr",
"hmrWarning": false
} }
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ombi:build"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json"
],
"exclude": [
"**/node_modules/**"
]
}
} }
} },
} "defaultProject": "ombi"
},
"defaultProject": "ombi"
} }

@ -1,86 +1,78 @@
{ {
"name": "ombi", "name": "ombi",
"version": "3.0.0", "version": "3.0.0",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
"start": "ng serve --port 3578 --configuration hmr", "start": "ng serve --port 3578 --configuration hmr",
"build": "node --max_old_space_size=6144 node_modules/@angular/cli/bin/ng build --prod", "build": "node --max_old_space_size=6144 node_modules/@angular/cli/bin/ng build --prod",
"lint": "ng lint" "lint": "ng lint"
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "^8.0.0", "@angular/animations": "^8.0.0",
"@angular/cdk": "^8.0.0", "@angular/cdk": "^8.0.0",
"@angular/common": "^8.0.0", "@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0", "@angular/compiler": "^8.0.0",
"@angular/core": "^8.0.0", "@angular/core": "^8.0.0",
"@angular/forms": "^8.0.0", "@angular/forms": "^8.0.0",
"@angular/material": "^8.0.0", "@angular/material": "^8.0.0",
"@angular/platform-browser": "^8.0.0", "@angular/platform-browser": "^8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0", "@angular/platform-browser-dynamic": "^8.0.0",
"@angular/platform-server": "^8.0.0", "@angular/platform-server": "^8.0.0",
"@angular/router": "^8.0.0", "@angular/router": "^8.0.0",
"@angularclass/hmr": "^2.1.3", "@angularclass/hmr": "^2.1.3",
"@aspnet/signalr": "^1.1.0", "@aspnet/signalr": "^1.1.0",
"@auth0/angular-jwt": "^2.1.0", "@auth0/angular-jwt": "^2.1.0",
"@fullcalendar/core": "^4.2.0", "@fullcalendar/core": "^4.2.0",
"@fullcalendar/interaction": "^4.2.0", "@fullcalendar/interaction": "^4.2.0",
"@ng-bootstrap/ng-bootstrap": "^4.0.1", "@ng-bootstrap/ng-bootstrap": "^4.0.1",
"@ngu/carousel": "^1.4.9-beta-2", "@ngu/carousel": "^1.4.9-beta-2",
"@ngx-translate/core": "^11.0.1", "@ngx-translate/core": "^11.0.1",
"@ngx-translate/http-loader": "^4.0.0", "@ngx-translate/http-loader": "^4.0.0",
"@types/jquery": "^3.3.29", "@types/jquery": "^3.3.29",
"@yellowspot/ng-truncate": "^1.4.0", "@yellowspot/ng-truncate": "^1.4.0",
"angular-bootstrap-md": "^7.5.4", "angular-bootstrap-md": "^7.5.4",
"angular-router-loader": "^0.8.5", "angular-router-loader": "^0.8.5",
"angular2-template-loader": "^0.6.2", "angularx-qrcode": "^2.1.0",
"angularx-qrcode": "^2.1.0", "bootstrap": "^4.2.1",
"aspnet-prerendering": "^3.0.1", "chart.js": "2.5.0",
"awesome-typescript-loader": "^5.2.0", "core-js": "^2.5.4",
"bootstrap": "^4.2.1", "eventemitter2": "^5.0.1",
"chart.js": "2.5.0", "font-awesome": "^4.7.0",
"core-js": "^2.5.4", "fullcalendar": "^4.0.0-alpha.4",
"eventemitter2": "^5.0.1", "hammerjs": "^2.0.8",
"font-awesome": "^4.7.0", "jquery": "3.3.1",
"fullcalendar": "^4.0.0-alpha.4", "moment": "^2.23.0",
"hammerjs": "^2.0.8", "ng2-cookies": "^1.0.12",
"jquery": "3.3.1", "ngx-clipboard": "^12.1.0",
"moment": "^2.23.0", "ngx-infinite-scroll": "^7.1.0",
"ng2-cookies": "^1.0.12", "ngx-moment": "^3.0.1",
"ngx-bootstrap": "^3.1.4", "ngx-order-pipe": "^2.0.1",
"ngx-clipboard": "^12.1.0", "please-wait": "^0.0.5",
"ngx-infinite-scroll": "^7.1.0", "popper.js": "^1.14.3",
"ngx-moment": "^3.0.1", "primeicons": "^1.0.0",
"ngx-order-pipe": "^2.0.1", "primeng": "^7.0.3",
"ngx-page-scroll": "^5.0.1", "rxjs": "^6.5.2",
"pace": "github:HubSpot/pace#v1.0.2", "spinkit": "^1.2.5",
"please-wait": "^0.0.5", "store": "^2.0.12",
"popper.js": "^1.14.3", "tslint-angular": "^1.1.2",
"primeicons": "^1.0.0", "zone.js": "^0.9.1"
"primeng": "^7.0.3", },
"rxjs": "^6.5.2", "devDependencies": {
"socket.io-client": "^2.2.0", "@angular-devkit/build-angular": "^0.803.21",
"spinkit": "^1.2.5", "@angular/cli": "~8.3.21",
"store": "^2.0.12", "@angular/compiler-cli": "^8.2.14",
"sweetalert2": "^7.33.1", "@angular/language-service": "^8.2.14",
"tslint-angular": "^1.1.2", "@types/jasmine": "~2.8.6",
"zone.js": "^0.9.1" "@types/jasminewd2": "~2.0.3",
}, "@types/node": "~8.9.4",
"devDependencies": { "codelyzer": "^4.5.0",
"@angular-devkit/build-angular": "^0.803.21", "typescript": "~3.4.5"
"@angular/cli": "~8.3.21", },
"@angular/compiler-cli": "^8.2.14", "optionalDependencies": {
"@angular/language-service": "^8.2.14", "node-sass": "^4.12.0",
"@types/jasmine": "~2.8.6", "protractor": "~5.4.0",
"@types/jasminewd2": "~2.0.3", "ts-node": "~5.0.1",
"@types/node": "~8.9.4", "tslint": "^5.12.0"
"codelyzer": "^4.5.0", }
"typescript": "~3.4.5" }
},
"optionalDependencies": {
"node-sass": "^4.12.0",
"protractor": "~5.4.0",
"ts-node": "~5.0.1",
"tslint": "^5.12.0"
}
}
Loading…
Cancel
Save