-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
{
"name": "discord-bot-template",
"version": "1.0.0",
"author": {
"name": "Fellipe Utaka"
},
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node .",
"build": "swc ./src -d dist --copy-files --config-file .swcrc",
"format": "prettier -w \"**/*.{json,ts,md}\"",
"lint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"@discordjs/voice": "^0.14.0",
"discord.js": "^14.10.2",
"dotenv": "^16.0.3",
"libsodium-wrappers": "^0.7.11"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@fellipeutaka/eslint-config": "^1.4.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.56",
"@types/node": "^18.16.4",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.39.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}