-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
130 lines (130 loc) · 3.56 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "u-wave-core",
"version": "0.5.0-alpha.20",
"description": "The üWave core library.",
"license": "MIT",
"repository": "u-wave/core",
"author": "SooYou <souyoou@googlemail.com>",
"contributors": [
"Felix Wong <felix@fawong.com>",
"Goz3rr <goz3rr@gmail.com>",
"Renée Kooi <renee@kooi.me>"
],
"main": "src/index.js",
"exports": {
".": {
"default": "./src/index.js",
"types": "./types/index.d.ts"
},
"./package.json": "./package.json"
},
"type": "module",
"bin": {
"u-wave-core": "bin/u-wave-core.js"
},
"engines": {
"node": ">= 18.18.0"
},
"dependencies": {
"@twurple/api": "^7.0.0",
"@twurple/auth": "^7.0.0",
"ajv": "^8.0.5",
"ajv-formats": "^3.0.1",
"avvio": "^9.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie": "^1.0.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"escape-string-regexp": "^5.0.0",
"explain-error": "^1.0.4",
"express": "^5.0.0",
"has": "^1.0.3",
"helmet": "^8.0.0",
"htmlescape": "^1.1.1",
"http-errors": "^2.0.0",
"i18next": "^23.2.6",
"ioredis": "^5.0.1",
"json-merge-patch": "^1.0.2",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"mongoose": "^8.6.2",
"ms": "^2.1.2",
"node-fetch": "^3.3.1",
"nodemailer": "^6.4.2",
"passport": "^0.5.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"pino": "^9.0.0",
"pino-http": "^10.1.0",
"qs": "^6.9.1",
"random-string": "^0.2.0",
"ratelimiter": "^3.4.0",
"redlock": "5.0.0-beta.2",
"secure-json-parse": "^2.4.0",
"transliteration": "^2.1.11",
"u-wave-announce": "^0.5.1",
"u-wave-source-soundcloud": "^2.0.2",
"u-wave-source-youtube": "^2.0.0",
"ultron": "^1.1.1",
"umzug": "^3.1.0",
"ws": "^8.0.0",
"yaml": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@tsconfig/node18": "^18.2.2",
"@types/bcryptjs": "^2.4.2",
"@types/cookie": "^0.6.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^5.0.0",
"@types/has": "^1.0.0",
"@types/htmlescape": "^1.1.1",
"@types/http-errors": "^2.0.0",
"@types/json-merge-patch": "^1.0.0",
"@types/jsonwebtoken": "^9.0.0",
"@types/lodash": "^4.14.168",
"@types/ms": "^0.7.31",
"@types/node": "~18.18.0",
"@types/node-fetch": "^2.5.8",
"@types/nodemailer": "^6.4.1",
"@types/passport": "^1.0.6",
"@types/passport-google-oauth20": "^2.0.7",
"@types/passport-local": "^1.0.33",
"@types/qs": "^6.9.6",
"@types/random-string": "^0.2.0",
"@types/ratelimiter": "^3.4.1",
"@types/sinon": "^17.0.0",
"@types/supertest": "^6.0.1",
"@types/ultron": "^1.1.0",
"@types/ws": "^8.2.0",
"c8": "^10.0.0",
"concat-stream": "^2.0.0",
"delay": "^6.0.0",
"dotenv": "^16.0.0",
"eslint": "^9.12.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^17.10.2",
"get-port": "^7.0.0",
"globals": "^15.9.0",
"mocha": "^10.0.0",
"nock": "^13.2.0",
"nodemon": "^3.0.1",
"pino-colada": "^2.2.2",
"recaptcha-test-keys": "^1.0.0",
"sinon": "^19.0.2",
"supertest": "^7.0.0",
"type-fest": "^4.0.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.5.0"
},
"scripts": {
"lint": "eslint --cache .",
"test": "npm run tests-only && npm run lint",
"tests-only": "c8 --reporter lcov --src src mocha --exit",
"types": "tsc -p tsconfig.json",
"start": "nodemon dev/u-wave-dev-server.js | pino-colada"
}
}