-
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.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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": "wetube",
"version": "1.0.0",
"description": "The best way to watch videos.",
"repository": {
"type": "git",
"url": "git+https://github.com/JerryG0228/wetube-clone.git"
},
"scripts": {
"dev:server": "nodemon",
"build:server": "babel src -d dist --ignore src/client",
"dev:assets": "webpack --mode=development --watch",
"build:assets": "webpack --mode=production",
"build": "npm run build:server && npm run build:assets",
"start": "node dist/init.js"
},
"keywords": [
"nodeJS"
],
"author": "zoo<anfdnfl@khu.ac.kr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JerryG0228/wetube-clone/issues"
},
"homepage": "https://github.com/JerryG0228/wetube-clone#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.577.0",
"@ffmpeg/core": "^0.12.6",
"@ffmpeg/ffmpeg": "^0.12.10",
"@ffmpeg/util": "^0.12.1",
"bcrypt": "^5.1.1",
"connect-mongo": "^5.1.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-flash": "^0.0.2",
"express-session": "^1.18.0",
"mongoose": "^8.4.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^3.0.1",
"node-fetch": "^3.3.2",
"pug": "^3.0.2",
"regenerator-runtime": "^0.14.1"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.5",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.24.5",
"@flydotio/dockerfile": "^0.5.7",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.1",
"mini-css-extract-plugin": "^2.9.0",
"nodemon": "^3.1.0",
"sass": "^1.77.2",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}