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
|
{
"name": "myapps",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "NODE_ENV=production next start -p 6360",
"lint": "next lint"
},
"dependencies": {
"@distube/ytdl-core": "^4.15.9",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0-rc.12",
"jszip": "^3.10.1",
"mongoose": "^5.13.16",
"next": "^14.2.20",
"next-iron-session": "4.1.7",
"nodemailer": "^6.9.1",
"prop-types": "15.7.2",
"react": "^18.2.0",
"react-dom": "^18.0.0",
"sass": "^1.60.0",
"scrape-youtube": "^2.4.0",
"sharp": "^0.33.5",
"swr": "^1.3.0",
"ytpl": "^2.3.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^11.1.2",
"eslint": "7.32.0",
"eslint-config-next": "^11.1.4",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1"
}
}
|