-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
137 lines (137 loc) · 4.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@listory/api",
"version": "1.31.0",
"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:console": "nest start --watch --entryFile console",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/ frontend/src/",
"lint:api": "eslint --ext .js,.ts src/ test/",
"lint:frontend": "eslint --ext .js,.jsx,.ts,.tsx frontend/src/",
"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": {
"@apricote/nest-pg-boss": "2.1.0",
"@narando/nest-axios-interceptor": "3.0.0",
"@nestjs/axios": "3.0.3",
"@nestjs/common": "10.4.3",
"@nestjs/config": "3.2.3",
"@nestjs/core": "10.4.3",
"@nestjs/jwt": "10.2.0",
"@nestjs/passport": "10.0.3",
"@nestjs/platform-express": "10.4.3",
"@nestjs/serve-static": "4.0.2",
"@nestjs/swagger": "7.4.2",
"@nestjs/terminus": "10.2.3",
"@nestjs/typeorm": "10.0.2",
"@opentelemetry/api": "1.9.0",
"@opentelemetry/api-metrics": "0.33.0",
"@opentelemetry/context-async-hooks": "1.26.0",
"@opentelemetry/exporter-prometheus": "0.53.0",
"@opentelemetry/exporter-trace-otlp-http": "0.53.0",
"@opentelemetry/instrumentation": "0.53.0",
"@opentelemetry/instrumentation-dns": "0.39.0",
"@opentelemetry/instrumentation-express": "0.42.0",
"@opentelemetry/instrumentation-http": "0.53.0",
"@opentelemetry/instrumentation-nestjs-core": "0.40.0",
"@opentelemetry/instrumentation-pg": "0.44.0",
"@opentelemetry/instrumentation-pino": "0.42.0",
"@opentelemetry/resources": "1.26.0",
"@opentelemetry/sdk-metrics": "1.26.0",
"@opentelemetry/sdk-node": "0.53.0",
"@opentelemetry/sdk-trace-base": "1.26.0",
"@opentelemetry/semantic-conventions": "1.27.0",
"@sentry/node": "7.119.0",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"cookie-parser": "1.4.6",
"date-fns": "2.30.0",
"joi": "17.13.3",
"lodash": "4.17.21",
"nest-raven": "10.1.0",
"nestjs-otel": "5.1.5",
"nestjs-pino": "4.1.0",
"nestjs-typeorm-paginate": "4.0.4",
"passport": "0.7.0",
"passport-http-bearer": "1.0.1",
"passport-jwt": "4.0.1",
"passport-spotify": "2.0.0",
"pg": "8.13.0",
"pg-boss": "9.0.3",
"pino": "8.21.0",
"pino-http": "9.0.0",
"reflect-metadata": "0.1.14",
"rimraf": "5.0.10",
"rxjs": "7.8.1",
"typeorm": "0.3.20"
},
"devDependencies": {
"@nestjs/cli": "10.4.5",
"@nestjs/schematics": "10.1.4",
"@nestjs/testing": "10.4.3",
"@types/cookie-parser": "1.4.7",
"@types/express": "4.17.21",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.13",
"@types/node": "20.16.5",
"@types/passport-http-bearer": "1.0.41",
"@types/passport-jwt": "4.0.1",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-jsdoc": "48.11.0",
"eslint-plugin-jsx-a11y": "6.10.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-react": "7.36.1",
"eslint-plugin-react-hooks": "4.6.2",
"jest": "29.7.0",
"pino-pretty": "10.3.1",
"prettier": "3.3.3",
"supertest": "6.3.4",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.6.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"collectCoverageFrom": [
"src/**/*.ts"
],
"testEnvironment": "node",
"roots": [
"<rootDir>/src/"
]
}
}