-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"name": "wetube",
"version": "1.0.0",
"description": "Learning and practicing Node.js and Express by cloning Youtube",
"main": "index.js",
"scripts": {
"dev:server": "nodemon --exec babel-node init.js --delay 2 --ignore 'scss' ",
"dev:assets": "webpack -w --mode=development",
"build:assets": "webpack -w --mode=production"
},
"author": "Hee Young Lee",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"connect-mongo": "^2.0.3",
"cookie-parser": "^1.4.4",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"helmet": "^3.15.1",
"mongoose": "^5.4.14",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"pug": "^2.0.3"
},
"devDependencies": {
"autoprefixer": "^9.4.8",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.10",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
}
}