This repository has been archived by the owner on Dec 9, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.85 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
{
"name": "haruna",
"version": "0.1.0",
"description": "",
"main": "dist/haruna.js",
"author": "iCrawl <icrawltogo@gmail.com>",
"license": "UNLICENSED",
"private": true,
"scripts": {
"prebuild": "pnpm run lint",
"build": "rimraf dist && tsc",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"sentry:release": "sentry-cli releases new --finalize $VERSION",
"sentry:sourcemaps": "sentry-cli releases files $VERSION upload-sourcemaps --ext map dist",
"sentry:commits": "sentry-cli releases set-commits --auto $VERSION"
},
"dependencies": {
"@sentry/integrations": "^5.11.1",
"@sentry/node": "^5.11.1",
"common-tags": "^1.8.0",
"discord-akairo": "1Computer1/discord-akairo",
"discord.js": "discordjs/discord.js",
"dotenv": "^8.2.0",
"ioredis": "^4.14.1",
"lavalink": "^2.9.0",
"lavaqueue": "^3.1.5",
"moment": "^2.24.0",
"moment-duration-format": "^2.3.2",
"pg": "^8.0.0",
"prom-client": "^11.5.3",
"reflect-metadata": "^0.1.13",
"rejects": "^0.6.2",
"tslib": "^2.0.0",
"typeorm": "^0.2.22",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@sentry/cli": "^1.49.0",
"@types/backoff": "^2.5.1",
"@types/common-tags": "^1.8.0",
"@types/ioredis": "^4.14.4",
"@types/moment-duration-format": "^2.2.2",
"@types/node": "^13.5.0",
"@types/ws": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^7.0.0",
"eslint-config-marine": "^6.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"typescript": "^4.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2",
"zlib-sync": "^0.1.6"
},
"eslintConfig": {
"extends": "marine/prettier/node"
},
"renovate": {
"extends": ["teal"]
}
}