-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.01 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
{
"name": "taco-interactions",
"author": {
"name": "Snazzah",
"email": "me@snazzah.com",
"url": "https://snazzah.com/"
},
"version": "8.2.1",
"description": "Taco Bot over Discord Interactions: Manage Trello boards straight from Discord!",
"main": "dist/index.js",
"license": "MIT",
"repository": "https://github.com/trello-talk/TacoInteractions",
"bugs": {
"url": "https://github.com/trello-talk/TacoInteraction/issues"
},
"homepage": "https://tacobot.app/",
"private": true,
"scripts": {
"start": "cd dist && node index.js",
"build": "rimraf dist && tsc",
"sync": "slash-up sync",
"sync:dev": "slash-up sync -e development",
"dev": "tsx src/index",
"lint": "eslint --ext .ts ./src",
"lint:fix": "eslint --ext .ts ./src --fix",
"generate": "prisma generate",
"migrate": "prisma migrate deploy",
"role-metadata": "tsx scripts/roleMetadata"
},
"dependencies": {
"@influxdata/influxdb-client": "1.33.2",
"@prisma/client": "4.16.2",
"@sentry/integrations": "7.92.0",
"@sentry/node": "7.92.0",
"@sentry/tracing": "7.92.0",
"axios": "0.27.2",
"cat-loggr": "1.2.2",
"common-tags": "1.8.2",
"cron": "3.1.7",
"dayjs": "1.11.13",
"dotenv": "16.4.5",
"fastify": "4.28.1",
"fuzzy": "0.1.3",
"i18next": "23.7.13",
"i18next-fs-backend": "2.3.1",
"ioredis": "5.4.1",
"nanoid": "3.3.7",
"slash-create": "6.2.1",
"slash-up": "1.4.2"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "3.1.0",
"@types/common-tags": "1.8.4",
"@types/express": "4.17.21",
"@types/i18next-fs-backend": "1.1.5",
"@types/node": "20.9.0",
"eslint": "8.57.0",
"eslint-config-snazzah": "2.0.0",
"prisma": "4.16.2",
"rimraf": "6.0.1",
"tsx": "4.19.0",
"typescript": "5.3.3"
},
"pnpm": {
"overrides": {
"got@<11.8.5": ">=11.8.5",
"http-cache-semantics@<4.1.1": ">=4.1.1",
"json5@<1.0.2": ">=1.0.2",
"semver@>=6.0.0 <6.3.1": ">=6.3.1"
}
}
}