-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.01 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.01 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
{
"name": "hackathon-overlay-minigame",
"version": "0.1.0",
"description": "Twitch Overlay Mini-game for Channel Points Hackathon",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode development --open --hot",
"build": "webpack --mode development",
"build-debug": "webpack --mode development --config debug.config.js",
"build-prod": "webpack --mode production",
"server": "node server.js",
"server-debug": "node server-debug.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jayther/hackathon-overlay-minigame.git"
},
"keywords": [
"twitch",
"overlay",
"game",
"channel",
"points",
"hackathon"
],
"author": "jayther",
"license": "ISC",
"bugs": {
"url": "https://github.com/jayther/hackathon-overlay-minigame/issues"
},
"homepage": "https://github.com/jayther/hackathon-overlay-minigame#readme",
"dependencies": {
"bootstrap": "^4.6.0",
"core-js": "^3.8.3",
"eventemitter3": "^4.0.7",
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"howler": "^2.2.1",
"jquery": "^3.5.1",
"popper.js": "^1.16.1-lts",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"regenerator-runtime": "^0.13.7",
"socket.io": "^3.1.1",
"socket.io-client": "^3.1.1",
"twitch": "^4.4.11",
"twitch-auth": "^4.4.11",
"twitch-chat-client": "^4.4.11",
"twitch-eventsub": "^4.4.11",
"twitch-eventsub-ngrok": "^4.4.11"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.2",
"eslint": "^7.20.0",
"eslint-plugin-react": "^7.22.0",
"gulp": "^4.0.2",
"html-webpack-plugin": "^5.0.0",
"mini-css-extract-plugin": "^1.3.7",
"sass": "^1.32.7",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.20.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}