-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
{
"name": "seele-discord-ts",
"version": "1.0.0",
"main": "dist/seele.js",
"author": "Eris#0404",
"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": "^1.1.3",
"@sapphire/plugin-logger": "^2.1.2",
"@sapphire/plugin-subcommands": "^2.1.3",
"@sapphire/time-utilities": "^1.5.2",
"@sapphire/type": "^2.1.2",
"@sapphire/utilities": "^3.2.1",
"@types/common-tags": "^1.8.1",
"@types/luxon": "^2.3.2",
"@types/node": "^17.0.33",
"axios": "^0.27.2",
"booru": "^2.5.6",
"colorette": "^2.0.16",
"common-tags": "^1.8.2",
"discord.js": "^13.6.0",
"dotenv-cra": "^3.0.2",
"luxon": "^2.3.2",
"mongoose": "^6.3.2",
"reflect-metadata": "^0.1.13",
"short-unique-id": "^4.4.4",
"weeby-js": "^2.0.2"
},
"devDependencies": {
"@sapphire/ts-config": "^3.1.8",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.15.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"tsc-watch": "^4.6.0",
"typescript": "^4.5.5"
},
"scripts": {
"lint": "eslint . --ext .ts",
"clean": "tsc --build --clean",
"build": "tsc --build",
"start": "node dist/seele.js",
"dev": "run-s lint clean build start",
"watch": "tsc -w",
"watch:start": "tsc-watch --onSuccess \"node ./dist/seele.js\""
}
}