-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 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
46
{
"name": "yamb",
"version": "1.0.0",
"private": true,
"description": "Discord Bot for Yandex.Music",
"keywords": [],
"author": "",
"license": "ISC",
"main": "src/app.ts",
"type": "module",
"scripts": {
"prod": "npm run build && npm run start",
"build": "npm run clean && tsc && npm run lint:fix",
"dev": "tsx src/app.ts",
"clean": "rimraf dist",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts ."
},
"dependencies": {
"axios": "^1.7.2",
"chalk": "^5.3.0",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"minimist": "^1.2.8",
"tsx": "^4.16.2",
"winston": "^3.13.1",
"winston-daily-rotate-file": "^5.0.0",
"winston-timestamp-colorize": "^1.1.0",
"winston-transport": "^4.7.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/dotenv": "^6.1.1",
"@types/minimist": "^1.2.5",
"@types/node": "^20.14.12",
"nodemon": "^3.1.4",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"engines": {
"node": ">= 12.9.1",
"npm": ">= 6.9.0"
}
}