-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 883 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 883 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
32
33
34
35
{
"name": "youtube-share",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"postbuild": "next-sitemap",
"start": "NODE_ENV=production node dist/server/index.js"
},
"dependencies": {
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.6",
"next": "15.0.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.1",
"react-icons": "^5.4.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"styled-components": "^6.1.13",
"zustand": "^5.0.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^8",
"eslint-config-next": "15.0.4",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5",
"next-sitemap": "^4.2.3"
}
}