-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "twitch-reactions-overlay",
"version": "1.0.0",
"description": "Overlay for emotes from chat",
"license": "MIT",
"main": "server/index.js",
"browserslist": [
"last 1 Firefox version",
"last 1 Chrome version"
],
"scripts": {
"build-client": "cross-env NODE_OPTIONS=--openssl-legacy-provider preact build --src client --no-prerender",
"build-server": "babel server --out-dir out --source-maps",
"build": "npm run build-client && npm run build-server",
"flow": "flow check",
"lint": "eslint client server",
"test": "npm run test:size",
"test:size": "bundlesize -f build/*.js",
"validate": "npm run build && npm run lint && npm run flow"
},
"dependencies": {
"@emotion/css": "11.13.4",
"dotenv": "16.4.5",
"nanoid": "3.3.7",
"node-fetch": "2.7.0",
"preact": "10.24.3",
"react-redux": "8.1.3",
"react-transition-group": "4.4.5",
"reconnecting-websocket": "4.4.0",
"redux": "4.2.1",
"redux-devtools-extension": "2.13.9",
"redux-thunk": "2.4.2",
"tmi.js": "1.8.5",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.4.0"
},
"devDependencies": {
"@babel/cli": "7.25.7",
"@babel/core": "7.25.8",
"@babel/eslint-parser": "7.25.8",
"@babel/plugin-transform-flow-strip-types": "7.25.7",
"@babel/preset-env": "7.25.8",
"@emotion/babel-plugin": "11.12.0",
"bundlesize": "0.18.2",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.1",
"eslint-plugin-react-hooks": "5.0.0",
"flow-bin": "0.215.1",
"preact-cli": "3.5.1",
"prettier": "3.3.3"
}
}