-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
32 lines (32 loc) · 903 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
{
"name": "webpack-helloworld",
"version": "2.0.1",
"scripts": {
"dev": "webpack --mode=development",
"prod": "webpack --mode=production"
},
"description": "A demo app made using Webpack 4",
"author": "Emmanuel Antico",
"license": "Apache-2.0",
"repository": "https://github.com/emaphp/webpack-helloworld.git",
"dependencies": {
"@babel/runtime": "^7.2.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"file-loader": "^0.8.5",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
}
}