-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.3 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
{
"name": "TwitchListOverlay",
"version": "1.0.0",
"description": "Used to display a simple list overlay in OBS or whatever",
"main": "main.js",
"scripts": {
"build": "webpack --config webpack.config.ts",
"watch": "webpack watch --config webpack.config.ts"
},
"keywords": [],
"author": "github.com/matthewjohnston4",
"license": "ISC",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tmi.js": "^1.8.5"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.4",
"@types/fork-ts-checker-webpack-plugin": "^0.4.5",
"@types/react": "^17.0.29",
"@types/react-dom": "^17.0.9",
"@types/tmi.js": "^1.8.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^7.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^3.0.1",
"fork-ts-checker-webpack-plugin": "^6.3.4",
"ts-node": "^10.3.0",
"typescript": "^4.4.4",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
}
}