-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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
{
"name": "syncyt",
"version": "1.0.0",
"main": "dist/server.js",
"repository": "[email protected]:anosatsuk124/syncyt.git",
"author": "Satsuki Akiba <[email protected]>",
"license": "AGPL-3.0",
"private": true,
"scripts": {
"fmt": "prettier --write .",
"dev": "cd frontend && vite",
"build": "run-p build:*",
"build:frontend": "cd frontend && vite build",
"build:server": "tsc",
"prestart": "run-s build",
"start": "node dist/server.js"
},
"dependencies": {
"@chakra-ui/react": "^2.4.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@types/uuid": "^9.0.0",
"dotenv": "^16.0.3",
"events": "^3.3.0",
"express": "^4.18.2",
"framer-motion": "^8.3.0",
"jotai": "^1.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"uuid": "^9.0.0",
"yt-player": "^3.6.1"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/yt-player": "^3.5.1",
"@vitejs/plugin-react-swc": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.2",
"typescript": "^4.9.4",
"vite": "^4.0.0"
}
}