This repository was archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.45 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
45
46
47
48
49
50
51
{
"name": "makerdao-sourcecred-bot",
"version": "1.0.0",
"description": "A Discord bot to handle SourceCred integrations",
"main": "dist/index.js",
"scripts": {
"start": "node dist/deployCommands.js && node dist/index.js",
"build": "tsc",
"dev": "ts-node-dev --watch --respawn --transpile-only src/index.ts",
"reload-commands": "ts-node-dev --watch --respawn --transpile-only src/deployCommands.ts",
"lint": "eslint . --ext .js,.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hernandoagf/MakerDAO-SourceCred-bot.git"
},
"keywords": [
"MakerDAO",
"SourceCred"
],
"author": "hernandoagf",
"license": "MIT",
"bugs": {
"url": "https://github.com/hernandoagf/MakerDAO-SourceCred-bot/issues"
},
"homepage": "https://github.com/hernandoagf/MakerDAO-SourceCred-bot#readme",
"devDependencies": {
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.3"
},
"dependencies": {
"@discordjs/builders": "^0.9.0",
"@discordjs/rest": "^0.1.0-canary.0",
"@notionhq/client": "^1.0.4",
"axios": "^0.26.0",
"discord-api-types": "^0.25.2",
"discord.js": "^13.7.0",
"dotenv": "^10.0.0",
"ethers": "^5.5.2",
"node-fetch": "^2.6.6",
"octokit": "^1.7.1",
"sourcecred": "^0.11.1"
},
"engines": {
"node": ">16.x"
}
}