This repository has been archived by the owner on May 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 2.63 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "better-airhorn",
"version": "2.0.0",
"description": "Replacement for Airhorn Solutions with additional features",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"debug": "nodemon --inspect=0 src/index.ts",
"build": "tsc -p ./tsconfig.json",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/Clemens.E/better-airhorn.git"
},
"keywords": [
"discord",
"airhorn",
"record audio"
],
"author": "Clemens Ertle",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/Clemens.E/better-airhorn/issues"
},
"homepage": "https://gitlab.com/Clemens.E/better-airhorn#README",
"dependencies": {
"@rocka/mp3-duration": "^2.0.0",
"@sentry/node": "^5.23.0",
"appmetrics-dash": "^5.3.0",
"better-sqlite-pool": "^0.3.0",
"bufferutil": "^4.0.1",
"common-tags": "^1.8.0",
"cron": "^1.8.2",
"cuid": "^2.1.8",
"discord-message-tasks": "^1.0.5",
"discord.js": "github:vladfrangu/discOwOd.js#fix-internal-sharding-again",
"dotenv": "^8.2.0",
"enmap": "^5.7.1",
"event-loop-lag": "^1.4.0",
"filesize-parser": "^1.5.0",
"js-logger": "^1.6.0",
"lame": "github:TooTallNate/node-lame",
"mkdirp": "^1.0.4",
"moment": "^2.27.0",
"moment-duration-format": "^2.3.2",
"node-fetch": "^2.6.1",
"node-lame": "^1.2.2",
"node-opus": "^0.3.3",
"pg": "^8.3.3",
"readdirp": "^3.4.0",
"string-similarity": "^4.0.2",
"veza": "^1.1.0",
"zlib-sync": "^0.1.7"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
},
"snyk": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@typescript-eslint/typescript-estree": "^4.1.0",
"eslint": "^6.8.0",
"typescript": "^4.0.2",
"typescript-estree": "^18.1.0",
"snyk": "^1.393.0",
"@types/common-tags": "^1.8.0",
"@types/cron": "^1.7.2",
"@types/eslint": "^7.2.2",
"@types/event-loop-lag": "^1.0.30",
"@types/express": "^4.17.8",
"@types/get-folder-size": "^2.0.0",
"@types/mkdirp": "^1.0.1",
"@types/moment-duration-format": "^2.2.2",
"@types/node": "^14.10.0",
"@types/node-fetch": "^2.5.7",
"@types/pg": "^7.14.4",
"@types/string-similarity": "^3.0.0",
"@types/ws": "^7.2.6",
"ts-node": "^9.0.0",
"@types/filesize-parser": "^1.5.0"
}
}