-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
81 lines (81 loc) · 2.32 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
73
74
75
76
77
78
79
80
81
{
"name": "artbot",
"version": "1.0.0",
"description": "A bot to provide info for artblocks",
"main": "index.js",
"packageManager": "yarn@4.3.1",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "yarn start",
"test": "jest",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"codegen": "graphql-codegen --config ./codegen.ts",
"prepare": "husky install",
"postinstall": "yarn codegen",
"lint-and-format": "yarn lint && yarn format"
},
"keywords": [
"artblocks",
"discord",
"crypto",
"eth"
],
"engines": {
"node": "20.x"
},
"author": "duggan roberts",
"license": "MIT",
"dependencies": {
"@ardatan/aggregate-error": "^0.0.6",
"@graphql-codegen/cli": "^2.13.11",
"@graphql-codegen/typed-document-node": "^2.3.6",
"@graphql-codegen/typescript": "^2.8.1",
"@graphql-codegen/typescript-operations": "^2.5.5",
"@graphql-codegen/typescript-resolvers": "2.7.6",
"@graphql-codegen/typescript-urql": "^3.7.3",
"@graphql-codegen/urql-introspection": "^2.2.1",
"@graphql-tools/utils": "^8.3.0",
"@reservoir0x/reservoir-sdk": "^2.4.32",
"@supabase/supabase-js": "^2.29.0",
"@types/node": "20.1.2",
"@types/node-cron": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@urql/exchange-retry": "^1.0.0",
"axios": "^1.6.0",
"body-parser": "^1.15.2",
"chatgpt": "^5.2.5",
"croner": "^6.0.7",
"discord.js": "^14.16.3",
"dotenv": "^16.0.3",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"ethers": "^5.7.0",
"googleapis": "^92.0.0",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"husky": "^8.0.3",
"jest": "^28.0.3",
"lodash.deburr": "^4.1.0",
"ms": "^2.0.0",
"node-fetch": "^2.6.1",
"node-html-parser": "^3.2.0",
"openai": "^4.73.0",
"prettier": "^2.6.2",
"react": "18.2.0",
"reconnecting-websocket": "^4.4.0",
"sharp": "^0.32.6",
"timeago.js": "^4.0.2",
"ts-node": "^10.9.2",
"twitter-api-v2": "^1.14.1",
"typescript": "^5.1.6",
"urql": "^3.0.3",
"viem": "2.17.4",
"web3": "^1.7.0",
"ws": "^8.17.1"
}
}