-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
70 lines (70 loc) · 2.08 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
70
{
"name": "steve",
"version": "3.19.0",
"description": "Discord bot for Tuataria and its sideservers.",
"main": "dist/src/bot.js",
"scripts": {
"start": "node --harmony dist/src/Steve.js",
"build": "tsc -p .",
"build-clear": "rm -rf dist && tsc -p .",
"dev": "tsc -p . && node --harmony dist/src/Steve.js",
"dev-clear": "rm -rf dist && tsc -p . && node --harmony dist/src/Steve.js",
"test": "jest",
"lint": "eslint src --ext .ts",
"lint-fix": "eslint src --ext .ts --fix",
"contrib:add": "all-contributors add"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuataria/steve.git"
},
"author": "Tuataria",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/tuataria/steve/issues"
},
"homepage": "https://github.com/tuataria/steve#readme",
"dependencies": {
"@klasa/utils": "^0.1.0",
"@skyra/decorators": "^3.0.0",
"axios": "^0.21.1",
"common-tags": "^1.8.0",
"convert-units": "^2.3.4",
"discord.js": "^12.5.3",
"genius-lyrics": "^4.2.9",
"klasa": "git://github.com/tuataria/klasa.git#725632bfcfc135bc49f5b102b67c726dac72d015",
"lavalink": "^2.11.0",
"module-alias": "^2.2.2",
"moment": "^2.24.0",
"mongodb": "^3.5.3",
"node-fetch": "^2.6.1",
"pretty-ms": "^6.0.1"
},
"_moduleAliases": {
"@root": "dist",
"@lib": "dist/src/lib",
"@utils": "dist/src/lib/util"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/backoff": "^2.5.1",
"@types/common-tags": "^1.8.0",
"@types/convert-units": "^2.3.3",
"@types/jest": "^26.0.20",
"@types/mongodb": "^3.3.16",
"@types/node-fetch": "^2.5.4",
"@types/ws": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"all-contributors-cli": "^6.19.0",
"discord-api-types": "^0.18.1",
"eslint": "^7.0.0",
"eslint-config-bamboo": "^5.0.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}