This repository has been archived by the owner on Aug 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.62 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
{
"name": "recent-messages",
"version": "1.0.0",
"description": "Recent messages bot and web service for twitch.tv",
"main": "dist/bin/recent-messages.js",
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts .",
"eslint": "eslint --format codeframe --ext .ts --ext .",
"tslint": "tslint --project .",
"lintfix": "npm run eslint -- --fix && npm run tslint -- --fix",
"test": "echo \"No tests specified\" && exit 1",
"clean": "rm -rf ./dist",
"prettier-watch": "onchange -v \"**/*.ts\" \"**/*.js\" -- prettier --write {{changed}}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robotty/recent-messages.git"
},
"keywords": [
"twitch",
"irc"
],
"author": "Ruben Anders",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/robotty/recent-messages/issues"
},
"homepage": "https://github.com/robotty/recent-messages#readme",
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/debug": "^4.1.5",
"@types/duplexify": "^3.6.0",
"@types/express": "^4.17.3",
"@types/express-promise-router": "^3.0.0",
"@types/hapi__joi": "^16.0.12",
"@types/helmet": "0.0.45",
"@types/http-status-codes": "^1.2.0",
"@types/ioredis": "^4.14.9",
"@types/joi": "^14.3.4",
"@types/moment": "^2.13.0",
"@types/node": "^12.12.31",
"@types/on-finished": "^2.3.1",
"@types/pg": "^7.14.3",
"@types/pretty-ms": "^5.0.1",
"@types/prometheus-gc-stats": "^0.6.1",
"@types/umzug": "^2.2.3",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"ts-toolbelt": "^6.3.6",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@robotty/umzug-postgres-storage": "^3.0.3",
"clarify": "^2.1.0",
"cors": "^2.8.5",
"dank-twitch-irc": "^3.0.7",
"debug-logger": "^0.4.1",
"eventemitter3": "^4.0.0",
"express": "^4.17.1",
"express-joi-validation": "^4.0.3",
"express-prom-bundle": "^6.0.0",
"express-promise-router": "^3.0.3",
"helmet": "^3.21.0",
"ioredis": "^4.14.0",
"lodash": "^4.17.19",
"make-error-cause": "^2.2.1",
"moment": "^2.24.0",
"on-finished": "^2.3.0",
"pg": "^7.12.1",
"pretty-ms": "^5.0.0",
"prom-client": "^12.0.0",
"prometheus-gc-stats": "^0.6.2",
"source-map-support": "^0.5.13",
"umzug": "^2.2.0"
}
}