forked from shotaronowhere/tg-court-functions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.69 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
{
"name": "tg-court-functions",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "netlify dev --no-open",
"dev:invoke-update": "netlify dev:exec -- netlify functions:invoke update --port 8888",
"dev:notify": "NODE_NO_WARNINGS=1 NODE_OPTIONS=--experimental-fetch yarn ts-node functions/util/notify.ts",
"dev:draw-v2": "NODE_NO_WARNINGS=1 NODE_OPTIONS=--experimental-fetch yarn ts-node functions/util/v2/draw.ts",
"bot-init": "yarn ts-node ./config/botInit.ts",
"generate": "yarn generate:gql && yarn generate:supabase",
"generate:gql": "graphql-codegen --config codegen.yml",
"generate:supabase": "./scripts/generateSupabaseTypes.sh"
},
"dependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-graphql-request": "^5.0.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@logtail/node": "^0.4.6",
"@netlify/functions": "^1.6.0",
"@supabase/supabase-js": "^2.32.0",
"@wagmi/core": "^1.3.10",
"axios": "^1.6.3",
"dotenv": "^16.3.1",
"ethers": "^6.7.0",
"graphql": "^16.8.0",
"graphql-request": "^6.1.0",
"http-status-codes": "^2.2.0",
"humanize-duration": "^3.31.0",
"node-cache": "^5.1.2",
"node-telegram-bot-api": "^0.61.0",
"p-queue": "^6.6.2",
"supabase": "^1.88.0",
"viem": "^1.6.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/humanize-duration": "^3.27.4",
"@types/node": "16",
"@types/node-telegram-bot-api": "^0.61.7",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"packageManager": "yarn@1.22.19",
"volta": {
"node": "16.20.2",
"yarn": "1.22.19"
}
}