-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 823 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 823 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
{
"name": "tubenotes",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev:frontend": "vite",
"dev:backend": "node server.js",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"build": "vite build",
"lint": "oxlint",
"preview": "vite preview"
},
"dependencies": {
"axios": "^1.7.2",
"cors": "^2.8.5",
"express": "^4.19.2",
"he": "^1.2.0",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"lucide-react": "^0.469.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"youtube-transcript": "^1.3.1"
},
"devDependencies": {
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"concurrently": "^8.2.2",
"oxlint": "^1.69.0",
"vite": "^8.1.0"
}
}