forked from TheLarkInn/webpack-workshop-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.45 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
{
"name": "webpack-workshop-2018",
"version": "1.0.0",
"description": "Learning resources for the webpack academy workshop series for 2018",
"main": "index.js",
"scripts": {
"serve": "http-server ./",
"webpack-dev-server": "webpack-dev-server",
"webpack": "webpack",
"webpack-dev": "npm run webpack-dev-server -- --env.mode development --hot",
"webpack-prod": "npm run webpack -- --env.mode production",
"debug": "node --inspect-brk ./node_modules/webpack/bin/webpack.js --env.mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheLarkInn/webpack-workshop-2018.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheLarkInn/webpack-workshop-2018/issues"
},
"homepage": "https://github.com/TheLarkInn/webpack-workshop-2018#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.11",
"date-fns": "^1.29.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"lodash-es": "^4.17.8",
"mini-css-extract-plugin": "^0.4.0",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2"
}
}