2020-01-25 22:19:14 +01:00
|
|
|
{
|
|
|
|
|
"name": "listory",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"description": "Track your Spotify Listen History",
|
|
|
|
|
"author": "Julian Tölle <julian.toelle97@gmail.com>",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"prebuild": "rimraf dist",
|
|
|
|
|
"build": "nest build",
|
|
|
|
|
"format": "prettier --write \"apps/**/*.ts\" \"libs/**/*.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": {
|
|
|
|
|
"@nestjs/common": "^6.7.2",
|
|
|
|
|
"@nestjs/config": "^0.1.0",
|
|
|
|
|
"@nestjs/core": "^6.7.2",
|
2020-02-01 16:11:48 +01:00
|
|
|
"@nestjs/jwt": "^6.1.1",
|
2020-01-25 22:19:14 +01:00
|
|
|
"@nestjs/passport": "^6.1.1",
|
|
|
|
|
"@nestjs/platform-express": "^6.7.2",
|
2020-02-01 16:11:48 +01:00
|
|
|
"@nestjs/schedule": "^0.2.0",
|
|
|
|
|
"@nestjs/swagger": "^4.2.3",
|
2020-01-25 22:19:14 +01:00
|
|
|
"@nestjs/typeorm": "^6.2.0",
|
2020-02-01 16:11:48 +01:00
|
|
|
"class-transformer": "^0.2.3",
|
|
|
|
|
"class-validator": "^0.11.0",
|
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-01-25 22:19:14 +01:00
|
|
|
"pg": "^7.17.1",
|
|
|
|
|
"reflect-metadata": "^0.1.13",
|
|
|
|
|
"rimraf": "^3.0.0",
|
|
|
|
|
"rxjs": "^6.5.3",
|
2020-02-01 16:11:48 +01:00
|
|
|
"swagger-ui-express": "^4.1.3",
|
2020-01-25 22:19:14 +01:00
|
|
|
"typeorm": "^0.2.22"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@nestjs/cli": "^6.9.0",
|
|
|
|
|
"@nestjs/schematics": "^6.7.0",
|
|
|
|
|
"@nestjs/testing": "^6.7.1",
|
|
|
|
|
"@types/express": "^4.17.1",
|
|
|
|
|
"@types/jest": "^24.0.18",
|
|
|
|
|
"@types/node": "^12.7.5",
|
2020-02-01 16:11:48 +01:00
|
|
|
"@types/passport-jwt": "^3.0.3",
|
2020-01-25 22:19:14 +01:00
|
|
|
"@types/supertest": "^2.0.8",
|
|
|
|
|
"jest": "^24.9.0",
|
|
|
|
|
"prettier": "^1.18.2",
|
|
|
|
|
"supertest": "^4.0.2",
|
|
|
|
|
"ts-jest": "^24.1.0",
|
|
|
|
|
"ts-loader": "^6.1.1",
|
|
|
|
|
"ts-node": "^8.4.1",
|
|
|
|
|
"tsconfig-paths": "^3.9.0",
|
|
|
|
|
"tslint": "^5.20.0",
|
|
|
|
|
"tslint-config-prettier": "^1.18.0",
|
|
|
|
|
"tslint-plugin-prettier": "^2.1.0",
|
|
|
|
|
"typescript": "^3.6.3"
|
|
|
|
|
},
|
|
|
|
|
"jest": {
|
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
|
"js",
|
|
|
|
|
"json",
|
|
|
|
|
"ts"
|
|
|
|
|
],
|
|
|
|
|
"rootDir": ".",
|
|
|
|
|
"testRegex": ".spec.ts$",
|
|
|
|
|
"transform": {
|
|
|
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
|
|
|
},
|
|
|
|
|
"coverageDirectory": "./coverage",
|
|
|
|
|
"testEnvironment": "node",
|
|
|
|
|
"roots": [
|
|
|
|
|
"<rootDir>/apps/"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|