-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
49
50
51
52
53
54
{
"name": "queuetube",
"version": "1.0.0",
"description": "Video Player",
"author": "Krishna Kant Sharma",
"scripts": {
"dev:server": "nodemon --exec babel-node init.js --delay 2 --ignore 'scss' ",
"dev:assets": "WEBPACK_ENV=development webpack -w",
"build:assets": "WEBPACK_ENV=production webpack"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"autoprefixer": "^9.7.6",
"babel-loader": "^8.1.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"css-loader": "^3.5.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"helmet": "^3.21.3",
"mongoose": "^5.9.6",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"pug": "^2.0.4",
"sass-loader": "^8.0.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^2.0.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"last 1 ie version"
]
}
}