-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.29 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
{
"name": "webpack-starter-pack",
"version": "1.0.0",
"description": "webpack config pipeline for simple static projects",
"main": "index.html",
"scripts": {
"webpack:dev": "webpack --mode development",
"webpack:prod": "webpack --mode production",
"webpack:watch": "webpack --watch",
"webpack:start": "webpack-dev-server --open --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LabZoneSK/webpack-starter-pack"
},
"author": "Vladislav Saling, Martin Starosta",
"license": "MIT",
"bugs": {
"url": "https://github.com/LabZoneSK/webpack-starter-pack/issues"
},
"homepage": "https://github.com/LabZoneSK/webpack-starter-pack#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.10",
"extract-loader": "^1.0.2",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"image-webpack-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.2.0",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0",
"multi-entry-loader": "^1.1.2"
}
}