-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2.05 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
{
"name": "ps2alerts-aggregator",
"version": "4.5.0",
"description": "Aggregation engine that powers PS2Alerts.com.",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prepare": "husky install",
"lint:check": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/PS2Alerts/aggregator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ps2alerts/aggregator/issues"
},
"homepage": "https://github.com/ps2alerts/aggregator#readme",
"dependencies": {
"@nestjs/axios": "^2.0.0",
"@nestjs/common": "^9.4.3",
"@nestjs/config": "^2.3.2",
"@nestjs/core": "^9.4.3",
"@nestjs/microservices": "^9.4.3",
"@nestjs/platform-fastify": "^9.4.3",
"@nestjs/terminus": "^9.1.1",
"@willsoto/nestjs-prometheus": "^5.5.1",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.0",
"axios": "^1.7.4",
"date-fns": "^2.30.0",
"ioredis": "^5.3.2",
"lodash": "^4.17.21",
"prom-client": "^14.2.0",
"ps2census": "^4.5.7",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@types/amqplib": "^0.10.1",
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.10",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.2"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix"
]
}
}