Listory/package.json

91 lines
2.5 KiB
JSON
Raw Normal View History

2020-01-25 22:19:14 +01:00
{
2020-05-03 20:57:03 +02:00
"name": "@listory/api",
chore(release): 1.0.0 [skip ci] # 1.0.0 (2020-05-07) ### Bug Fixes * **api:** redirect to frontend on spotify auth error ([cffdded](https://github.com/apricote/Listory/commit/cffddedc8189b2813bf20b23cf87bcccb40b33e0)) * **cd:** typo ([b8ee62f](https://github.com/apricote/Listory/commit/b8ee62ff09d0717d8bda3d8a00a772242df27095)) * **frontend:** fix minor styling+linting issues ([0abc594](https://github.com/apricote/Listory/commit/0abc594db44edf572d6904f3287ab800a3fc2aa0)) ### Features * **api:** add health-check endpoint ([202665a](https://github.com/apricote/Listory/commit/202665a51038cb64b058210f998ea8f04874848b)) * **cd:** configure automated semantic releases ([8e796d7](https://github.com/apricote/Listory/commit/8e796d7e78ad0d44f54439c35cdf6602c1b3a95c)) * **frontend:** style recent listens page ([1d5cefb](https://github.com/apricote/Listory/commit/1d5cefb44732fa0ae9021fa8fb03eb2ed8e35f26)) * add docs and polish ([75d3e2e](https://github.com/apricote/Listory/commit/75d3e2edbd4d0a867faf66241649884fe04d75e2)) * **api:** add getListens endpoint with pagination ([de6d057](https://github.com/apricote/Listory/commit/de6d057f80fb4f0b83c22ddf7bcc181cbca97c23)) * **api:** add optional spotify user whitelist ([a27fcce](https://github.com/apricote/Listory/commit/a27fcce03b2bfc8b463bdc6d0b2d4921abad5cd5)) * **api:** fetch listens from spotify ([f2065d3](https://github.com/apricote/Listory/commit/f2065d3f1ff56c992568bdae23bf6e2bea074cf5)) * **api:** listen on SIGTERM for graceful shutdown ([d58cb46](https://github.com/apricote/Listory/commit/d58cb46f3ed3812a017b609f6929f61923573385)) * **api:** setup database migrations ([a7c5c68](https://github.com/apricote/Listory/commit/a7c5c68540562e4667317c998505f049a1696f05)) * **api:** validate configuration ([e78c6e3](https://github.com/apricote/Listory/commit/e78c6e312dc4a7b3fbf8ff40f55cede74839a1fa)) * serve frontend from api container in prod build ([ad98ce4](https://github.com/apricote/Listory/commit/ad98ce4e880923001daea9794b3781f23fcfd657)) * **api:** setup logging ([b6eef7f](https://github.com/apricote/Listory/commit/b6eef7f0902e9878f3de7c77ceb8e20fbc344904)) * **api:** setup nestjs ([db62d5d](https://github.com/apricote/Listory/commit/db62d5d90899edcd8847174f67fcf3f8d86ad7de)) * **api:** user authentication ([f253a66](https://github.com/apricote/Listory/commit/f253a66f86d917a478cd2cf132303520912d262c)) * **frontend:** redo setup with ts+tailwind and implement auth+header ([05f230a](https://github.com/apricote/Listory/commit/05f230a7cebf484407dfd680faff7520c25949a6)) * **frontend:** setup ([f14eda1](https://github.com/apricote/Listory/commit/f14eda16ac1b20390508b35af80bea10cf144040)) * **frontend:** show page when login fails ([32dcd84](https://github.com/apricote/Listory/commit/32dcd84964c9f5dcf3e18bd214dbe08893a036a5)) * **frontend:** show recent listens ([49bff95](https://github.com/apricote/Listory/commit/49bff95ea59a6d5ac33c0277636e13d2679d9a47))
2020-05-07 00:40:16 +00:00
"version": "1.0.0",
2020-01-25 22:19:14 +01:00
"description": "Track your Spotify Listen History",
2020-05-03 20:57:03 +02:00
"author": {
"name": "Julian Tölle",
"email": "julian.toelle97@gmail.com"
},
2020-01-25 22:19:14 +01:00
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
2020-05-02 17:17:20 +02:00
"format": "prettier --write \"src/**/*.ts\"",
2020-01-25 22:19:14 +01:00
"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": {
2020-05-03 03:47:24 +02:00
"@hapi/joi": "^17.1.1",
2020-05-02 17:17:20 +02:00
"@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",
2020-05-07 01:45:49 +02:00
"@nestjs/swagger": "^4.5.4",
2020-05-03 04:32:14 +02:00
"@nestjs/terminus": "^7.0.1",
2020-05-02 17:17:20 +02:00
"@nestjs/typeorm": "^7.0.0",
2020-02-01 16:11:48 +01:00
"class-transformer": "^0.2.3",
2020-05-02 17:17:20 +02:00
"class-validator": "^0.12.2",
"nestjs-typeorm-paginate": "^2.0.3",
2020-01-25 22:19:14 +01:00
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
2020-02-01 16:11:48 +01:00
"passport-spotify": "^1.1.0",
2020-05-02 17:17:20 +02:00
"pg": "^8.0.3",
2020-01-25 22:19:14 +01:00
"reflect-metadata": "^0.1.13",
2020-05-02 17:17:20 +02:00
"rimraf": "^3.0.2",
"rxjs": "^6.5.5",
"swagger-ui-express": "^4.1.4",
"typeorm": "^0.2.24"
2020-01-25 22:19:14 +01:00
},
"devDependencies": {
2020-05-07 01:45:49 +02:00
"@nestjs/cli": "^7.1.5",
2020-05-02 17:17:20 +02:00
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^7.0.9",
"@types/express": "^4.17.6",
2020-05-07 01:45:49 +02:00
"@types/hapi__joi": "^17.1.0",
2020-05-02 17:17:20 +02:00
"@types/jest": "^25.2.1",
2020-05-07 01:45:49 +02:00
"@types/node": "^13.13.5",
2020-02-01 16:11:48 +01:00
"@types/passport-jwt": "^3.0.3",
2020-05-02 17:17:20 +02:00
"@types/supertest": "^2.0.9",
"jest": "^25.5.4",
"prettier": "^2.0.5",
2020-01-25 22:19:14 +01:00
"supertest": "^4.0.2",
2020-05-07 01:45:49 +02:00
"ts-jest": "^25.5.0",
2020-05-02 17:17:20 +02:00
"ts-loader": "^7.0.2",
2020-05-07 01:45:49 +02:00
"ts-node": "^8.10.1",
2020-01-25 22:19:14 +01:00
"tsconfig-paths": "^3.9.0",
2020-05-02 17:17:20 +02:00
"tslint": "^6.1.2",
2020-01-25 22:19:14 +01:00
"tslint-config-prettier": "^1.18.0",
2020-05-02 17:17:20 +02:00
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.8.3"
2020-01-25 22:19:14 +01:00
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"roots": [
"<rootDir>/apps/"
]
}
}