-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 883 Bytes
/
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
{
"name": "mplayer-module",
"version": "1.0.0",
"description": "Music Player Module",
"main": "index.js",
"scripts": {
"dev": "webpack --mode=development --watch --config ./webpack.config.dev.js",
"build": "webpack --mode=production --config ./webpack.config.prod.js"
},
"author": "Lu-Vuong Le",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"autoprefixer": "^9.1.5",
"babel-loader": "^8.0.2",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"css-loader": "^1.0.0",
"hoek": "^5.0.3",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.23.0",
"webpack": "^4.18.1",
"webpack-cli": "^3.0.8"
},
"dependencies": {
"moment": "^2.22.2"
}
}