-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 894 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": "webpack-demo",
"version": "0.0.1",
"private": true,
"description": "This repo is to try out things in webpack, based for learning/testing new techs",
"repository": {
"type": "git",
"url": "https://github.com/aleastChs/webpack-tests"
},
"keywords": [
"learning",
"new techs"
],
"author": "aleastChs",
"bugs": {
"url": "https://github.com/aleastChs/webpack-tests/issues"
},
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"watch": "webpack --watch",
"start": "webpack-dev-server --open"
},
"devDependencies": {
"clean-webpack-plugin": "^0.1.19",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"xml-loader": "^1.2.1"
},
"dependencies": {
"lodash": "^4.17.10"
}
}