Listory/package.json

94 lines
2.6 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",
"version": "1.6.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-11 00:24:29 +00:00
"@hapi/joi": "17.1.1",
"@nestjs/common": "7.5.2",
"@nestjs/config": "0.5.0",
"@nestjs/core": "7.5.2",
"@nestjs/jwt": "7.1.0",
"@nestjs/passport": "7.1.0",
"@nestjs/platform-express": "7.5.2",
"@nestjs/schedule": "0.4.0",
"@nestjs/serve-static": "2.1.3",
"@nestjs/swagger": "4.7.3",
2020-05-11 00:24:29 +00:00
"@nestjs/terminus": "7.0.1",
"@nestjs/typeorm": "7.1.4",
"class-transformer": "0.3.1",
2020-05-11 00:24:29 +00:00
"class-validator": "0.12.2",
2020-11-09 17:40:38 +00:00
"cookie-parser": "1.4.5",
"date-fns": "2.16.1",
"nestjs-typeorm-paginate": "2.1.1",
2020-05-11 00:24:29 +00:00
"passport": "0.4.1",
"passport-jwt": "4.0.0",
"passport-spotify": "1.1.0",
"pg": "8.3.3",
2020-05-11 00:24:29 +00:00
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "6.6.3",
2020-05-11 00:24:29 +00:00
"swagger-ui-express": "4.1.4",
"typeorm": "0.2.25"
2020-01-25 22:19:14 +01:00
},
"devDependencies": {
"@nestjs/cli": "7.5.2",
"@nestjs/schematics": "7.2.1",
"@nestjs/testing": "7.5.2",
2020-11-09 17:40:38 +00:00
"@types/cookie-parser": "1.4.2",
"@types/express": "4.17.8",
"@types/hapi__joi": "17.1.4",
"@types/jest": "26.0.13",
"@types/node": "13.13.30",
2020-05-11 00:24:29 +00:00
"@types/passport-jwt": "3.0.3",
"@types/supertest": "2.0.10",
2020-05-11 00:24:29 +00:00
"jest": "25.5.4",
"prettier": "2.1.2",
2020-05-11 00:24:29 +00:00
"supertest": "4.0.2",
"ts-jest": "26.3.0",
"ts-loader": "7.0.5",
"ts-node": "8.10.2",
2020-05-11 00:24:29 +00:00
"tsconfig-paths": "3.9.0",
"tslint": "6.1.3",
2020-05-11 00:24:29 +00:00
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "3.9.7"
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": [
2020-09-05 21:28:15 +02:00
"<rootDir>/src/"
2020-01-25 22:19:14 +01:00
]
}
}