-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 957 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
{
"name": "discord-timelock-watcher",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Moonster-BSC/discord-timelock-watcher.git",
"license": "MIT",
"scripts": {
"start": "ts-node src/bot.ts",
"test": "jest",
"tsc": "tsc"
},
"dependencies": {
"@types/jest": "^26.0.24",
"blockchain-addressbook": "^0.1.112",
"discord-command-parser": "^1.5.3",
"discord.js": "^12.5.3",
"dotenv": "^10.0.0",
"node-fetch": "^2.6.1",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/node": "^16.3.3",
"@types/node-fetch": "^2.5.11",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3"
}
}