-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.93 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "majo",
"version": "0.1.0",
"main": "dist/index.js",
"author": "@sapphire",
"license": "UNLICENSE",
"dependencies": {
"@discordjs/collection": "^0.4.0",
"@sapphire/decorators": "^4.0.2",
"@sapphire/discord-utilities": "^2.6.0",
"@sapphire/discord.js-utilities": "^4.4.0",
"@sapphire/fetch": "^2.0.4",
"@sapphire/framework": "^2.3.0",
"@sapphire/plugin-api": "^3.1.3",
"@sapphire/plugin-editable-commands": "*",
"@sapphire/plugin-subcommands": "^2.1.3",
"@sapphire/time-utilities": "^1.5.2",
"@sapphire/type": "^2.1.2",
"@sapphire/utilities": "^3.2.1",
"discord.js": "^13.6.0",
"erela.js": "^2.3.3",
"lodash": "^4.17.21",
"winston": "^3.6.0",
"winston-daily-rotate-file": "^4.6.1"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@sapphire/eslint-config": "^4.2.2",
"@sapphire/prettier-config": "^1.2.9",
"@sapphire/ts-config": "^3.1.8",
"@types/eslint": "^8",
"@types/lodash": "^4",
"@types/node": "^17.0.10",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"colorette": "^2.0.16",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"tsc-watch": "^4.6.0",
"typescript": "^4.5.5"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "run-s build start",
"lint": "eslint --fix src --ext ts",
"format": "prettier --write \"src/**/*.ts\"",
"predocker:watch": "npm install",
"docker:watch": "tsc-watch --onSuccess \"node ./dist/index.js\""
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": "@sapphire/prettier-config",
"packageManager": "[email protected]"
}