-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 871 Bytes
/
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
{
"name": "twitch-extensions-boilerplate",
"description": "A boilerplate for Twitch Extensions",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build"
},
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@types/twitch-ext": "^1.24.9",
"axios": "^1.7.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"swr": "^2.2.5",
"zustand": "^4.5.4"
},
"devDependencies": {
"@types/node": "^22.3.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vite-plugin-mkcert": "^1.17.5",
"vite-plugin-zip-pack": "^1.2.4",
"vite-tsconfig-paths": "^5.0.1"
},
"private": true
}