-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 884 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
34
35
36
{
"name": "Webpack4",
"author": "",
"main": "js/main.js",
"license": "MIT",
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production --watch"
},
"resolutions": {
"terser": "3.14.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.4",
"autoprefixer": "^9.4.6",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^2.1.0",
"cssnano": "^4.1.8",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"whatwg-fetch": "2.0.4"
},
"dependencies": {
"requirejs": "^2.3.6"
}
}