-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.73 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
{
"name": "honey-chat",
"version": "0.1.0",
"author": "DmitryScaletta",
"description": "Alternative twitch-like chat with history and some enhancements",
"license": "MIT",
"private": true,
"homepage": "https://honey-chat.vercel.app",
"engines": {
"node": "18.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest watch",
"generate:emojis-map": "cross-env TS_NODE_COMPILER_OPTIONS='{\\\"module\\\":\\\"commonjs\\\"}' ts-node ./scripts/generateEmojisMap",
"generate:twitch": "npx openapi-typescript https://twitch-api-swagger.surge.sh/openapi.json -o src/features/api/twitch/twitchApiTypes.generated.ts",
"generate:ffz": "npx openapi-typescript https://api.frankerfacez.com/v1/swagger.json -o ./src/features/api/ffz/ffzApiTypes.generated.ts",
"generate:7tv": "npx openapi-typescript https://github.com/SevenTV/API/raw/dev/internal/api/rest/v3/docs/swagger.json -o ./src/features/api/stv/stvApiTypes.generated.ts",
"fetch-mocks": "cross-env TS_NODE_COMPILER_OPTIONS='{\\\"module\\\":\\\"commonjs\\\"}' ts-node ./scripts/fetchMocks"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@reduxjs/toolkit": "^1.9.7",
"@twurple/auth": "5.2.7",
"@twurple/chat": "5.2.7",
"date-fns": "^2.30.0",
"deepmerge": "^4.3.1",
"howler": "^2.2.4",
"ircv3": "0.29.7",
"jwt-decode": "^4.0.0",
"next": "^14.0.1",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
"react-textarea-autosize": "^8.5.3",
"react-use": "^17.4.0",
"redux": "^4.2.1",
"url-regex-safe": "^4.0.0"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/gtag.js": "^0.0.18",
"@types/howler": "^2.2.11",
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-redux": "^7.1.30",
"@types/url-regex-safe": "^1.0.2",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@vitejs/plugin-react": "^4.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^14.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"jsdom": "^22.1.0",
"node-fetch": "3.3.2",
"prettier": "^3.0.3",
"ts-essentials": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
}
}