-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.64 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.64 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "youtube-clone",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node build/init.js",
"build": "npm run build:server && npm run build:assets",
"build:assets": "webpack --mode=production",
"build:server": "babel src -d build",
"dev:server": "nodemon",
"dev:assets": "webpack --mode=development -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hansejun/youtube-clone.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hansejun/youtube-clone/issues"
},
"homepage": "https://github.com/hansejun/youtube-clone#readme",
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.10",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"mini-css-extract-plugin": "^2.5.2",
"nodemon": "^2.0.15",
"sass": "^1.49.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@babel/cli": "^7.17.0",
"@ffmpeg/core": "^0.10.0",
"@ffmpeg/ffmpeg": "^0.10.1",
"aws-sdk": "^2.1071.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"express-flash": "^0.0.2",
"express-session": "^1.17.2",
"mongoose": "^6.1.7",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"multer-s3": "^2.10.0",
"node-fetch": "^2.6.1",
"node-polyfill-webpack-plugin": "^1.1.4",
"pug": "^3.0.2",
"qs": "^6.10.3",
"regenerator-runtime": "^0.13.9"
},
"description": ""
}