-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·48 lines (48 loc) · 1.43 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
{
"name": "Factotum_v2",
"version": "1.0.0",
"main": "dist/index.js",
"author": "@sapphire",
"license": "UNLICENSE",
"dependencies": {
"@discordjs/collection": "^0.4.0",
"@sapphire/decorators": "^3.1.4",
"@sapphire/discord-utilities": "^2.4.0",
"@sapphire/discord.js-utilities": "^4.1.5",
"@sapphire/fetch": "^2.0.3",
"@sapphire/framework": "^2.2.2",
"@sapphire/plugin-api": "^3.1.2",
"@sapphire/plugin-editable-commands": "^1.1.2",
"@sapphire/plugin-logger": "^2.1.1",
"@sapphire/plugin-subcommands": "^2.1.3",
"@sapphire/time-utilities": "^1.5.0",
"@sapphire/type": "^2.1.2",
"@sapphire/utilities": "^3.1.0",
"advanced-discord.js-prompts": "^2.1.2",
"discord.js": "^13.4.0",
"dotenv-cra": "^3.0.2",
"mongodb": "^4.3.0",
"reflect-metadata": "^0.1.13",
"ts-mongodb-orm": "^2.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@sapphire/prettier-config": "^1.2.7",
"@sapphire/ts-config": "^3.1.6",
"@types/node": "^17.0.5",
"@types/ws": "^8.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"tsc-watch": "^4.6.0",
"typescript": "^4.5.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\""
},
"prettier": "@sapphire/prettier-config"
}