-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 760 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 760 Bytes
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
{
"name": "friendtechbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"build": "rimraf ./build && tsc",
"deploy": "tsc && node build/deployCommands.js",
"start": "npm run deploy && npm run build && node build/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.5.0",
"discord-api-types": "^0.37.49",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"ethers": "^5.7.1",
"imgbb-uploader": "^1.5.1",
"jsdom": "^22.1.0",
"nodemon": "^3.0.1",
"puppeteer": "^21.2.1",
"rimraf": "^2.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/jsdom": "^21.1.2"
}
}