forked from weexteam/hackernews-App-powered-by-Apache-Weex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
43
44
45
46
{
"name": "weex-hackernews",
"version": "1.0.0",
"description": "Weex HackerNews App, powered by Vue.js.",
"main": "index.js",
"keywords": [
"weex",
"vue",
"hackernews",
"javascript",
"android",
"ios"
],
"scripts": {
"build": "webpack",
"dev": "webpack --watch",
"copy:android": "cp dist/index.weex.js android/app/src/main/assets/index.js",
"copy:ios": "cp dist/index.weex.js ios/assets/index.js",
"copy": "npm run copy:android && npm run copy:ios",
"serve": "serve -p 1337",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=4.0"
},
"author": "Hanks <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"vue": "^2.1.10",
"vue-router": "^2.1.1",
"vuex": "^2.1.1",
"vuex-router-sync": "^4.0.1",
"weex-vue-render": "^0.12.3"
},
"devDependencies": {
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.18.0",
"css-loader": "^0.26.1",
"serve": "^1.4.0",
"vue-loader": "^10.0.2",
"vue-template-compiler": "^2.1.10",
"webpack": "^2.2.1",
"weex-loader": "^0.4.4"
}
}