-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "new-tokens-bot",
"version": "1.0.0",
"description": "",
"main": "./src/index.ts",
"scripts": {
"dev": "nodemon --exec ts-node -r tsconfig-paths/register .",
"build": "tsc",
"start": "ts-node -r tsconfig-paths/register src/index.ts"
},
"nodemonConfig": {
"execMap": {
"ts": "node --loader ts-node/esm"
},
"ext": "ts js json"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.16",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"nodemon": "^3.0.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.2"
},
"dependencies": {
"cheerio": "1.0.0-rc.12",
"dotenv": "^16.3.1",
"ethers": "~5.7.2",
"firebase-admin": "^12.0.0",
"grammy": "^1.39.3",
"imaginesdk": "^1.1.0",
"moment": "^2.29.4",
"nanoid": "3.3.7",
"openai": "^4.54.0",
"web3": "4.4",
"ws": "^8.16.0"
}
}