-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.21 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.21 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "mytube",
"version": "1.0.0",
"engines": {
"node": "10.15.3"
},
"description": "Cloning Youtube with VanillaJS and NodeJS",
"main": "index.js",
"author": "Wooseok Kim",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"autoprefixer": "^9.6.0",
"aws-sdk": "^2.496.0",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"body-parser": "^1.19.0",
"connect-mongo": "^3.0.0",
"cookie-parser": "^1.4.4",
"core-js": "^3.1.3",
"css-loader": "^3.0.0",
"dotenv": "^8.0.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-prettier": "^3.1.0",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.16.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"get-blob-duration": "^1.0.1",
"helmet": "^3.21.2",
"mongoose": "^5.5.14",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"multer-s3": "^2.9.0",
"node-sass": "^4.12.0",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-github": "^1.1.0",
"passport-google": "^0.3.0",
"passport-google-oauth20": "^2.0.0",
"passport-instagram": "^1.0.0",
"passport-linkedin": "^1.0.0",
"passport-linkedin-oauth2": "^2.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"postcss-loader": "^3.0.0",
"pug": "^2.0.3",
"sass-loader": "^7.1.0",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
},
"scripts": {
"dev:server": "nodemon --exec babel-node src/init.js --delay 2 --ignore '.scss' --ignore 'static' ",
"dev:assets": "cd src && WEBPACK_ENV=development webpack -w",
"build:assets": "cd src && WEBPACK_ENV=production webpack",
"build:server": "babel src --out-dir build --ignore 'src/assets','src/static','src/webpack.config.js'",
"copyAll": "cp -R src/static build && cp -R src/views build",
"build": "npm run build:server && npm run build:assets && npm run copyAll",
"prebuild": "rm -rf build",
"start": "PRODUCTION=true node build/init.js",
"prestart": "npm run build"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"nodemon": "^1.19.1",
"prettier": "^1.18.2"
}
}