-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.53 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
{
"name": "hacksquad-discord-bot",
"version": "1.0.0",
"main": "dist/index.js",
"author": "HackSquadDev",
"license": "UNLICENSE",
"dependencies": {
"@sapphire/decorators": "^5.0.0",
"@sapphire/discord-utilities": "^2.11.6",
"@sapphire/discord.js-utilities": "^5.0.1",
"@sapphire/fetch": "^2.4.1",
"@sapphire/framework": "^3.1.3",
"@sapphire/plugin-api": "^4.0.1",
"@sapphire/plugin-editable-commands": "^2.0.1",
"@sapphire/plugin-logger": "^3.0.1",
"@sapphire/plugin-subcommands": "^3.2.2",
"@sapphire/time-utilities": "^1.7.8",
"@sapphire/type": "^2.2.4",
"@sapphire/utilities": "^3.10.1",
"colorette": "^2.0.19",
"discord-api-types": "^0.33.5",
"discord.js": "^13.11.0",
"dotenv-cra": "^3.0.2",
"fuse.js": "^6.6.2",
"node-cache": "^5.1.2",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@sapphire/prettier-config": "^1.4.4",
"@sapphire/ts-config": "^3.3.4",
"@types/node": "^18.8.3",
"@types/ws": "^8.5.3",
"eslint": "^8.25.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.4"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "run-s build start",
"watch:start": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install"
},
"engines": {
"node": ">=16.x"
},
"prettier": "@sapphire/prettier-config",
"lint-staged": {
"*.ts": [
"eslint --fix",
"npm run format"
]
}
}