You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ghostfolio/package.json

146 lines
4.7 KiB

{
"name": "ghostfolio",
"version": "0.85.0",
"homepage": "https://ghostfol.io",
"license": "AGPL-3.0",
"scripts": {
"affected": "nx affected",
"affected:apps": "nx affected:apps",
"affected:build": "nx affected:build",
"affected:dep-graph": "nx affected:dep-graph",
"affected:e2e": "nx affected:e2e",
"affected:libs": "nx affected:libs",
"affected:lint": "nx affected:lint",
"affected:test": "nx affected:test",
"angular": "node --max_old_space_size=32768 ./node_modules/@angular/cli/bin/ng",
"build:all": "ng build --prod api && ng build --prod client && yarn run replace-placeholders-in-build",
"clean": "rimraf dist",
"database:push": "yarn prisma db push --preview-feature",
"database:seed": "prisma db seed --preview-feature",
"dep-graph": "nx dep-graph",
"e2e": "ng e2e",
"format": "nx format:write",
"format:check": "nx format:check",
"format:write": "nx format:write",
"help": "nx help",
"import-sort": "import-sort --write '{apps,libs}/**/*.ts'",
"lint": "nx workspace-lint && ng lint",
"ng": "nx",
"nx": "nx",
"postinstall": "yarn prisma generate",
"replace-placeholders-in-build": "node ./replace.build.js",
"setup:database": "yarn database:push && yarn database:seed",
"start": "node dist/apps/api/main",
"start:client": "ng serve client --hmr -o",
"start:prod": "node apps/api/main",
"start:server": "yarn run nx serve api",
"test": "ng test",
"ts-node": "ts-node --compiler-options '{\"module\":\"CommonJS\"}'",
"update": "nx migrate latest",
"watch:server": "yarn run nx build api --watch",
"workspace-generator": "nx workspace-generator"
},
"dependencies": {
"@angular/animations": "11.2.4",
"@angular/cdk": "11.0.4",
"@angular/common": "11.2.4",
"@angular/compiler": "11.2.4",
"@angular/core": "11.2.4",
"@angular/forms": "11.2.4",
"@angular/material": "11.0.4",
"@angular/platform-browser": "11.2.4",
"@angular/platform-browser-dynamic": "11.2.4",
"@angular/router": "11.2.4",
"@nestjs/common": "7.6.5",
"@nestjs/config": "0.6.1",
"@nestjs/core": "7.6.5",
"@nestjs/jwt": "7.2.0",
"@nestjs/passport": "7.1.5",
"@nestjs/platform-express": "7.6.5",
"@nestjs/schedule": "0.4.1",
"@nestjs/serve-static": "2.1.4",
"@nrwl/angular": "12.0.0",
"@prisma/client": "2.20.1",
"@types/lodash": "4.14.168",
"alphavantage": "2.2.0",
"angular-material-css-vars": "1.1.2",
"bent": "7.3.12",
"bootstrap": "4.6.0",
"cache-manager": "3.4.3",
"cache-manager-redis-store": "2.0.0",
"chart.js": "3.0.2",
"chartjs-adapter-date-fns": "1.1.0-beta.1",
"chartjs-chart-timeline": "0.4.0",
"class-transformer": "0.3.2",
"class-validator": "0.13.1",
"countup.js": "2.0.7",
"cryptocurrencies": "7.0.0",
"date-fns": "2.19.0",
"http-status-codes": "2.1.4",
"ionicons": "5.5.1",
"lodash": "4.17.21",
"ngx-device-detector": "2.0.6",
"ngx-markdown": "11.1.2",
"ngx-skeleton-loader": "2.9.1",
"passport": "0.4.1",
"passport-google-oauth20": "2.0.0",
"passport-jwt": "4.0.0",
"prisma": "2.20.1",
"reflect-metadata": "0.1.13",
"round-to": "5.0.0",
"rxjs": "6.6.7",
"uuid": "8.3.2",
"yahoo-finance": "0.3.6",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1102.3",
"@angular-eslint/eslint-plugin": "2.0.2",
"@angular/cli": "11.2.3",
"@angular/compiler-cli": "11.2.4",
"@angular/language-service": "11.2.4",
"@angular/localize": "11.0.9",
"@nestjs/schematics": "7.2.6",
"@nestjs/testing": "7.6.5",
"@nrwl/cli": "12.0.0",
"@nrwl/cypress": "12.0.0",
"@nrwl/eslint-plugin-nx": "12.0.0",
"@nrwl/jest": "12.0.0",
"@nrwl/nest": "12.0.0",
"@nrwl/node": "12.0.0",
"@nrwl/tao": "12.0.0",
"@nrwl/workspace": "12.0.0",
"@types/cache-manager": "3.4.0",
"@types/jest": "26.0.20",
"@types/node": "14.14.33",
"@types/passport-google-oauth20": "2.0.6",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"codelyzer": "6.0.1",
"cypress": "6.2.1",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "latest",
"import-sort-cli": "6.0.0",
"import-sort-parser-typescript": "6.0.0",
"import-sort-style-module": "6.0.0",
"jest": "26.6.3",
"jest-preset-angular": "8.3.2",
"prettier": "2.2.1",
"replace-in-file": "6.2.0",
"rimraf": "3.0.2",
"ts-jest": "26.4.4",
"ts-node": "9.1.1",
"typescript": "4.1.4"
},
"engines": {
"node": "14.x"
},
"importSort": {
".ts": {
"parser": "typescript",
"style": "module"
}
}
}