forked from weaver-viii/vue-webpack-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 881 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": "vue-webpack-example",
"version": "1.0.0",
"description": "Vue project example using Webpack as the bundler.",
"main": "src/main.js",
"devDependencies": {
"css-loader": "^0.22.0",
"html-loader": "^0.3.0",
"node-libs-browser": "^0.5.2",
"style-loader": "^0.12.3",
"stylus-loader": "^1.2.1",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.12.1"
},
"scripts": {
"dev": "webpack-dev-server --inline --hot --quiet",
"build": "webpack -p"
},
"repository": {
"type": "git",
"url": "https://github.com/vuejs/vue-webpack-example"
},
"keywords": [
"vue",
"webpack"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue-webpack-example/issues"
},
"homepage": "https://github.com/vuejs/vue-webpack-example",
"dependencies": {
"vue": "^0.12.10"
}
}