-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
{
"name": "taco-ws",
"version": "1.0.0",
"description": "Taco WS",
"main": "src/index.js",
"repository": "https://github.com/trello-talk/TacoWS",
"bugs": {
"url": "https://github.com/trello-talk/TacoWS/issues"
},
"homepage": "https://tacobot.app/",
"author": {
"name": "Snazzah",
"email": "[email protected]",
"url": "https://snazzah.com/"
},
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.18.0"
},
"scripts": {
"start": "cd dist && node index.js",
"build": "tsc",
"lint": "eslint --ext .ts ./src",
"lint:fix": "eslint --ext .ts ./src --fix",
"generate": "prisma generate"
},
"dependencies": {
"@influxdata/influxdb-client": "1.33.2",
"@prisma/client": "6.0.1",
"@sentry/integrations": "7.92.0",
"@sentry/node": "7.92.0",
"@sentry/tracing": "7.92.0",
"cat-loggr": "1.2.2",
"cron": "3.1.6",
"dbots": "11.0.0",
"dotenv": "16.3.1",
"eris": "https://github.com/projectdysnomia/dysnomia#dev",
"ioredis": "5.3.2"
},
"devDependencies": {
"@types/cron": "2.0.1",
"@types/ioredis": "4.28.10",
"@types/node": "20.10.6",
"eslint": "8.57.1",
"eslint-config-snazzah": "2.0.0",
"prisma": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}