forked from Puyodead1/WoofOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.12 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
66
67
68
69
{
"name": "woof",
"version": "2.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"watch": "tsc -b src -w",
"start": "node --enable-source-maps build/index.js",
"watch:start": "tsc-watch -b src --onSuccess \"npm start\"",
"build:typescript": "tsc -b src",
"build:start": "npm run build:typescript && npm run start",
"clean:typescript": "rimraf build",
"deploy:update": " pm2 stop woof && git pull && npm run clean:typescript && npm run build:typescript && pm2 start woof && pm2 log woof"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Puyodead1/Woof2.git"
},
"keywords": [],
"author": "Puyodead1",
"license": "MIT",
"bugs": {
"url": "https://github.com/Puyodead1/Woof2/issues"
},
"homepage": "https://github.com/Puyodead1/Woof2#readme",
"dependencies": {
"@chatandshare/random-song": "^1.0.0",
"@discordjs/collection": "^0.2.1",
"@discordjs/voice": "^0.6.0",
"@sapphire/async-queue": "^1.1.7",
"@sapphire/decorators": "^3.1.2",
"@sapphire/discord.js-utilities": "^4.0.0",
"@sapphire/fetch": "^2.0.2",
"@sapphire/framework": "^2.1.3",
"@sapphire/pieces": "^3.1.0",
"@sapphire/plugin-api": "^3.0.1",
"@sapphire/plugin-editable-commands": "^1.0.1",
"@sapphire/plugin-logger": "^2.0.1",
"@sapphire/plugin-subcommands": "^2.0.1",
"@sapphire/ratelimits": "^2.1.4",
"@sapphire/stopwatch": "^1.2.3",
"@sapphire/time-utilities": "^1.4.4",
"@sapphire/type": "^2.1.1",
"@sapphire/utilities": "^3.0.4",
"@skyra/audio": "^2.0.0",
"@types/humanize-duration": "^3.25.1",
"async-rwlock": "^1.1.1",
"binarytf": "^2.0.0",
"colorette": "^2.0.16",
"discord-api-types": "^0.24.0",
"discord.js": "^13.2.0",
"discordjs-button-pagination": "^2.0.1",
"ioredis": "^4.28.0",
"libsodium-wrappers": "^0.7.9",
"mongodb": "^3.7.2",
"rand-token": "^1.0.1",
"simple-youtube-api": "^5.2.1",
"typeorm": "^0.2.38",
"typeorm-naming-strategies": "^2.0.0"
},
"devDependencies": {
"@sapphire/prettier-config": "^1.2.3",
"@sapphire/ts-config": "^3.1.2",
"rimraf": "^3.0.2",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.4"
},
"prettier": "@sapphire/prettier-config"
}