forked from vuejs/vue-hackernews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 788 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
{
"name": "vue-hackernews",
"version": "1.0.0",
"description": "HN clone with Vue.js using HN API",
"main": "index.js",
"scripts": {
"dev": "webpack --watch",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/yyx990803/vue-hackernews.git"
},
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/yyx990803/vue-hackernews/issues"
},
"homepage": "https://github.com/yyx990803/vue-hackernews",
"devDependencies": {
"css-loader": "^0.14.4",
"html-loader": "^0.3.0",
"style-loader": "^0.12.3",
"stylus-loader": "^1.2.0",
"vue-loader": "2.0.0",
"webpack": "^1.8.4"
},
"dependencies": {
"director": "^1.2.8",
"firebase": "^2.2.4",
"vue": "^0.12.0"
}
}