-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 KB
/
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
39
40
41
42
43
44
45
{
"name": "mina-govbot",
"version": "0.0.23",
"description": "Discord bot for collective decision making for Mina Protocol",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "ts-node src/bot.ts",
"dev": "ts-node-dev src/bot.ts",
"manage": "ts-node scripts/manage.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/builders": "^1.8.2",
"@discordjs/core": "^1.2.0",
"@discordjs/rest": "^2.3.0",
"@types/dotenv": "^8.2.0",
"@types/ws": "^8.5.10",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"jose": "^5.9.6",
"loglevel": "^1.9.1",
"loglevel-plugin-prefix": "^0.8.4",
"sequelize": "^6.37.3",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@types/sqlite3": "^3.1.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.2"
}
}