This repository was archived by the owner on Feb 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"name": "twitch-bot-client",
"version": "1.0.0",
"private": true,
"description": "Twitch bot client!",
"author": "Michael Webb",
"license": "MIT",
"homepage": "https://github.com/mjfwebb/twitch-bot",
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint -c .eslintrc.cjs --ext .js,.jsx,.ts,.tsx src/",
"test": "vitest"
},
"dependencies": {
"@radix-ui/react-tabs": "^1.0.4",
"@twemoji/api": "^15.1.0",
"classnames": "^2.3.2",
"color": "^5.0.0",
"framer-motion": "^12.0.0",
"js-confetti": "^0.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use": "^17.4.0",
"react-virtuoso": "^4.3.8",
"socket.io-client": "^4.5.4",
"styled-components": "^6.0.0-rc.6",
"vitest": "^3.0.0",
"wouter": "^3.0.2",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/color": "4.2.0",
"@types/react": "18.3.27",
"@types/react-dom": "18.3.7",
"@typescript-eslint/eslint-plugin": "8.46.4",
"@typescript-eslint/parser": "8.46.4",
"@vitejs/plugin-react": "4.7.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"less": "4.4.2",
"prettier": "3.7.1",
"typescript": "5.9.3",
"vite": "6.4.1"
}
}