-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.3 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
{
"name": "ts-bot",
"version": "1.1",
"icon": "https://cdn.discordapp.com/avatars/811255307673010246/8f145d7279847a9a6e46efd5ee3df6bf.webp",
"repository": "https://github.com/danielguirra/ts-bot",
"description": "DiscordBot in TypeScript",
"license": "MIT",
"author": "Daniel Guirra <daniel.guirra777@gmail.com>",
"scripts": {
"build": "node ./util/build.js",
"dev": "npx nodemon ./src/server.ts",
"start": "npm run build && node ./dist/src/server.js",
"test": "node --import tsx --test ./test/comand.spec.ts",
"startnotbuild": "npx ts-node ./src/server.ts",
"commandCreator": "node ./util/commandBaseTs/commandCreatorForName.js"
},
"dependencies": {
"@discordjs/rest": "^0.1.0-canary.0",
"@vitalets/google-translate-api": "^7.0.0",
"async-g-i-s": "^1.5.2",
"axios": "^0.21.4",
"canvas": "^2.10.2",
"cron": "^1.8.2",
"discord.js": "^14.0.3",
"express": "^4.17.1",
"sequelize": "^6.37.1",
"sqlite3": "^5.1.7",
"striptags": "^3.2.0"
},
"main": "server.ts",
"devDependencies": {
"@types/cron": "^1.7.3",
"@types/express": "^4.17.13",
"@types/node": "^18.19.26",
"@types/sequelize": "^4.28.20",
"@types/striptags": "^3.1.1",
"nodemon": "^2.0.22",
"ts-node": "^10.9.2"
}
}