-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.31 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.31 KB
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
{
"name": "temporal-worker-typescript",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc --build",
"build.watch": "tsc --build --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "ts-node src/worker.ts",
"start.watch": "nodemon src/worker.ts",
"workflow": "ts-node src/client.ts",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "jest",
"coverage": "jest --coverage",
"preinstall": "npx only-allow pnpm",
"start.prod": "node dist/worker.js",
"verifyTelegram": "ts-node src/clients/telegram/verifyTelegram.ts",
"prepare": "husky install"
},
"nodemonConfig": {
"execMap": {
"ts": "ts-node"
},
"ext": "ts",
"watch": [
"src"
]
},
"packageManager": "pnpm@10.11.0",
"dependencies": {
"@aws-sdk/client-s3": "^3.758.0",
"@discordjs/rest": "^2.5.0",
"@discordjs/ws": "^2.0.2",
"@temporalio/activity": "^1.11.7",
"@temporalio/client": "^1.11.7",
"@temporalio/common": "^1.11.8",
"@temporalio/worker": "^1.11.7",
"@temporalio/workflow": "^1.11.7",
"@togethercrew.dev/db": "^3.13.2",
"@togethercrew.dev/tc-messagebroker": "^0.0.51",
"axios": "^1.8.3",
"bottleneck": "^2.19.5",
"discord-api-types": "^0.38.8",
"discord.js": "^14.19.3",
"dotenv": "^16.4.7",
"grammy": "^1.35.0",
"https-proxy-agent": "^7.0.6",
"ioredis": "^5.6.0",
"joi": "^17.13.3",
"mongoose": "^8.12.1",
"neo4j-driver": "^5.28.1",
"p-limit": "^3.1.0",
"pako": "^2.1.0",
"pino": "^9.6.0",
"uuid": "^11.1.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.22.0",
"@temporalio/testing": "^1.11.7",
"@tsconfig/node16": "^16.1.3",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/neo4j": "^2.0.6",
"@types/node": "^22.13.10",
"@types/pako": "^2.0.3",
"eslint": "^9.22.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.15.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
}
}