-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.05 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
{
"name": "disstreamchat",
"version": "1.1.1",
"description": "a discord/twitch bot for integrating discord chat with twitch chat",
"main": "src/index.js",
"scripts": {
"start": "npm run prod",
"build": "npm-run-all clean transpile",
"serve": "node ./dist/index.js",
"dev": "concurrently npm:dev-*",
"dev-build": "tsc -w",
"dev-run": "nodemon dist",
"prod": "npm-run-all build serve",
"transpile": "tsc",
"clean": "rimraf dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GypsyDangerous/DisTwitchChat.git"
},
"keywords": [
"discord",
"twitch",
"bot"
],
"author": "David Snyder",
"license": "MIT",
"bugs": {
"url": "https://github.com/GypsyDangerous/DisTwitchChat/issues"
},
"homepage": "https://github.com/GypsyDangerous/DisTwitchChat#readme",
"dependencies": {
"body-parser": "^1.19.0",
"call-bind": "^1.0.2",
"concurrently": "^8.2.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"date-fns": "^2.14.0",
"dblapi.js": "^2.4.1",
"deep-equal": "^2.0.4",
"discord-oauth2": "^2.2.0",
"discord.js": "^12.3.0",
"dom-parser": "^0.1.6",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"extract-urls": "^1.3.2",
"fetchio-js": "^1.1.1",
"firebase-admin": "^9.7.0",
"get-intrinsic": "^1.1.1",
"helmet": "^3.22.0",
"jest": "^26.6.3",
"jsdom": "^16.4.0",
"linkify-urls": "^3.1.1",
"memory-cache": "^0.2.0",
"mustache": "^4.0.1",
"mustache-async": "^0.1.3",
"node-fetch": "^2.6.1",
"pretty-ms": "^7.0.0",
"sha1": "^1.1.1",
"socket.io": "^2.3.0",
"socketio-promises": "^1.0.1",
"svg2img": "^0.9.2",
"tmi.js": "^1.5.0",
"twitchio-js": "^1.0.5",
"twitchps": "github:DisStreamChat/twitchPS",
"url-parse": "^1.5.1",
"uuidv1": "^1.6.14"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/node": "^7.12.6",
"@babel/plugin-transform-runtime": "^7.11.0",
"@types/memory-cache": "^0.2.1",
"@types/node": "^12.0.2",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}