-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.44 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
{
"name": "bingotwitchextension",
"version": "1.0.0",
"description": "A Twitch extension that lets you play a game of BINGO on a livestream",
"main": "src/index.tsx",
"scripts": {
"start": "npm-run-all --parallel sass:watch serve",
"serve": "env-cmd -f .env webpack serve",
"sass:build": "sass --no-source-map src:src",
"sass:watch": "npm run sass:build -- --watch",
"build": "SET NODE_ENV=production && webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abdullahmorrison/BingoTwitchExtension.git"
},
"keywords": [
"BINGO",
"Twitch",
"Livestream",
"Extension"
],
"author": "Abdullah Morrison",
"bugs": {
"url": "https://github.com/abdullahmorrison/BingoTwitchExtension/issues"
},
"homepage": "https://github.com/abdullahmorrison/BingoTwitchExtension#readme",
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/tmi.js": "^1.8.3",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"env-cmd": "^10.1.0",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.58.0",
"tmi.js": "^1.8.5"
}
}