-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.17 KB
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
{
"name": "u-wave-core",
"version": "0.4.1",
"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",
"engines": {
"node": ">= 10"
},
"dependencies": {
"@hapi/joi": "^16.1.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie": "^0.4.0",
"cookie-parser": "^1.4.4",
"debug": "^4.1.1",
"escape-string-regexp": "^4.0.0",
"fs-blob-store": "^5.2.1",
"htmlescape": "^1.1.1",
"http-errors": "^1.7.3",
"i18next": "^19.0.3",
"image-type": "^4.1.0",
"ioredis": "^4.14.1",
"is-stream": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongoose": "^5.8.9",
"ms": "^2.1.2",
"node-fetch": "^2.6.0",
"nodemailer": "^6.4.2",
"p-each-series": "^2.1.0",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"pump": "^3.0.0",
"qs": "^6.9.1",
"random-string": "^0.2.0",
"ratelimiter": "^3.4.0",
"redlock": "^4.1.0",
"router": "^1.3.3",
"transliteration": "^2.1.11",
"try-json-parse": "^1.0.0",
"ultron": "^1.1.1",
"ws": "^7.2.1",
"yaml": "^1.7.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"concat-stream": "^2.0.0",
"cross-env": "^7.0.0",
"delay": "^4.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.20.0",
"explain-error": "^1.0.4",
"express": "^4.17.1",
"minimist": "^1.2.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.2",
"recaptcha-test-keys": "^1.0.0",
"sinon": "^9.0.0",
"sinon-chai": "^3.4.0",
"u-wave-announce": "^0.3.0",
"u-wave-source-soundcloud": "^1.3.1",
"u-wave-source-youtube": "^1.3.0"
},
"scripts": {
"test:mocha": "mocha",
"test:lint": "eslint --cache src test",
"test": "npm run test:mocha && npm run test:lint",
"start": "cross-env DEBUG=uwave:* nodemon dev/u-wave-dev-server"
}
}