-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 880 Bytes
/
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
{
"name": "entrebot",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon -- --files src/index.ts",
"build": "rm -rf build && tsc",
"serve": "node build/index.js",
"deployCommands": "ts-node src/scripts/deployCommands.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@dfinity/agent": "0.10.0",
"@dfinity/principal": "0.10.0",
"@discordjs/rest": "^0.1.0-canary.0",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"luxon": "^1.26.0",
"node-fetch": "^2.6.2",
"telegraf": "^4.2.0"
},
"devDependencies": {
"@types/luxon": "^1.26.2",
"@types/node": "^14.14.33",
"@types/node-fetch": "^2.5.12",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.4.2"
},
"nodemonConfig": {
"ignore": [
"cache/*"
]
}
}