-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 815 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 815 Bytes
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
{
"name": "ctp-controller",
"version": "1.0.0",
"description": "Cross The Pond Stream Controller",
"license": "GPL-3.0-or-later",
"author": "AdriTheDev",
"scripts": {
"dev": "vite",
"server": "node server.js",
"start": "concurrently \"npm run dev\" \"npm run server\"",
"build": "vite build",
"preview": "vite preview",
"prettier": "prettier --write ."
},
"dependencies": {
"concurrently": "^9.2.1",
"express": "^5.2.1",
"http-proxy-middleware": "^3.0.5",
"obs-websocket-js": "^5.0.8",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.2"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"prettier": "^3.8.3",
"vite": "^8.0.10"
}
}