forked from twilight92/youtube-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
47
48
{
"name": "youtube-clone",
"version": "1.0.0",
"description": "youtube clone built using NodeJS, Express, Mongop, ES6",
"repository": {
"type": "git",
"url": "git+https://github.com/twilight92/youtube-clone.git"
},
"scripts": {
"dev:server": "nodemon",
"dev:assets": "webpack --config webpack.config.js"
},
"author": "soojung",
"license": "MIT",
"bugs": {
"url": "https://github.com/twilight92/youtube-clone/issues"
},
"homepage": "https://github.com/twilight92/youtube-clone#readme",
"dependencies": {
"@ffmpeg/core": "^0.8.5",
"@ffmpeg/ffmpeg": "^0.9.7",
"bcrypt": "^5.1.1",
"connect-mongo": "^5.1.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-flash": "github:RGBboy/express-flash",
"express-session": "^1.18.0",
"mongoose": "^5.12.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.6.1",
"pug": "^3.0.3"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/node": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"mini-css-extract-plugin": "^2.9.0",
"nodemon": "^3.1.4",
"sass": "^1.77.8",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
}
}