-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 861 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 861 Bytes
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
{
"name": "webpack-babel-example",
"version": "1.0.0",
"description": "Webpack and Babel example",
"author": "Alexandru Munteanu",
"license": "MIT",
"keywords": [
"webpack",
"babel",
"example"
],
"scripts": {
"build": "npx webpack",
"server": "npx webpack-dev-server --hot --inline --host 0.0.0.0 --port 8087 --public `hostname`:8087"
},
"dependencies": {
"jquery": "^3.4.1",
"style-loader": "^0.23.1"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/polyfill": "^7.6.0",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.1.14",
"html-webpack-plugin": "^3.2.0"
}
}