-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 985 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
37
38
39
{
"name": "webpack1",
"version": "1.0.0",
"description": "play with webpack, start from scratch",
"main": "entry.js",
"scripts": {
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saulyz/webpack-playground.git"
},
"keywords": [
"webpack",
"javascript"
],
"author": "Saulius Vikerta",
"license": "ISC",
"bugs": {
"url": "https://github.com/saulyz/webpack-playground/issues"
},
"homepage": "https://github.com/saulyz/webpack-playground#readme",
"devDependencies": {
"babel-loader": "^7.1.2",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.6.0"
},
"dependencies": {
"vue": "^2.4.4",
"vue-router": "^2.7.0"
}
}