-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "discord-auction-bot",
"version": "1.0.0",
"type": "module",
"description": "Бот для проведения аукциона в дискорде",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "tsc && node build/index.js",
"deploy-commands": "tsc && node build/deploy-commands.js",
"deploy-commands-and-start": "npm run deploy-commands && npm start",
"start-health-server": "tsc && node build/health.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sergey-Ubogov/discord-auction-bot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sergey-Ubogov/discord-auction-bot/issues"
},
"homepage": "https://github.com/Sergey-Ubogov/discord-auction-bot#readme",
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "3.1.1"
}
}