mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 13:11:02 +00:00
## [1.0.1](https://github.com/apricote/Listory/compare/v1.0.0...v1.0.1) (2020-05-07) ### Bug Fixes * **cd:** docker image labels are missing values ([f68d05c](f68d05ce14))
90 lines
2.5 KiB
JSON
90 lines
2.5 KiB
JSON
{
|
|
"name": "@listory/api",
|
|
"version": "1.0.1",
|
|
"description": "Track your Spotify Listen History",
|
|
"author": {
|
|
"name": "Julian Tölle",
|
|
"email": "julian.toelle97@gmail.com"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "nest build",
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
"start": "nest start",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --watch",
|
|
"start:prod": "node dist/main",
|
|
"lint": "tslint -p tsconfig.json -c tslint.json",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:cov": "jest --coverage",
|
|
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
|
"test:e2e": "jest --config ./apps/listory/test/jest-e2e.json"
|
|
},
|
|
"dependencies": {
|
|
"@hapi/joi": "^17.1.1",
|
|
"@nestjs/common": "^7.0.9",
|
|
"@nestjs/config": "^0.4.0",
|
|
"@nestjs/core": "^7.0.9",
|
|
"@nestjs/jwt": "^7.0.0",
|
|
"@nestjs/passport": "^7.0.0",
|
|
"@nestjs/platform-express": "^7.0.9",
|
|
"@nestjs/schedule": "^0.3.1",
|
|
"@nestjs/serve-static": "^2.1.0",
|
|
"@nestjs/swagger": "^4.5.4",
|
|
"@nestjs/terminus": "^7.0.1",
|
|
"@nestjs/typeorm": "^7.0.0",
|
|
"class-transformer": "^0.2.3",
|
|
"class-validator": "^0.12.2",
|
|
"nestjs-typeorm-paginate": "^2.0.3",
|
|
"passport": "^0.4.1",
|
|
"passport-jwt": "^4.0.0",
|
|
"passport-spotify": "^1.1.0",
|
|
"pg": "^8.0.3",
|
|
"reflect-metadata": "^0.1.13",
|
|
"rimraf": "^3.0.2",
|
|
"rxjs": "^6.5.5",
|
|
"swagger-ui-express": "^4.1.4",
|
|
"typeorm": "^0.2.24"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^7.1.5",
|
|
"@nestjs/schematics": "^7.0.0",
|
|
"@nestjs/testing": "^7.0.9",
|
|
"@types/express": "^4.17.6",
|
|
"@types/hapi__joi": "^17.1.0",
|
|
"@types/jest": "^25.2.1",
|
|
"@types/node": "^13.13.5",
|
|
"@types/passport-jwt": "^3.0.3",
|
|
"@types/supertest": "^2.0.9",
|
|
"jest": "^25.5.4",
|
|
"prettier": "^2.0.5",
|
|
"supertest": "^4.0.2",
|
|
"ts-jest": "^25.5.0",
|
|
"ts-loader": "^7.0.2",
|
|
"ts-node": "^8.10.1",
|
|
"tsconfig-paths": "^3.9.0",
|
|
"tslint": "^6.1.2",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"tslint-plugin-prettier": "^2.3.0",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"ts"
|
|
],
|
|
"rootDir": ".",
|
|
"testRegex": ".spec.ts$",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"coverageDirectory": "./coverage",
|
|
"testEnvironment": "node",
|
|
"roots": [
|
|
"<rootDir>/apps/"
|
|
]
|
|
}
|
|
}
|