-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
87 lines (87 loc) · 2.7 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "cordovue",
"description": "Cordova template using VueJS, Webpack, ES2015",
"version": "1.0.5",
"author": {
"name": "Gabriel Cueto <@Mushr00m_Dev>",
"email": "[email protected]",
"url": "https://github.com/TheMushrr00m"
},
"repository": {
"type": "git",
"url": "https://github.com/TheMushrr00m/cordovue"
},
"bugs": {
"url": "https://github.com/TheMushrr00m/cordovue/issues"
},
"homepage": "https://github.com/TheMushrr00m/cordovue",
"license": "MIT",
"keywords": [
"ecosystem:phonegap",
"ecosystem:cordova",
"cordova:template",
"phonegap:template",
"vue.js",
"vuejs",
"webpack",
"hot-reload",
"eslint"
],
"cordova": {
"id": "cordovue",
"platforms": [
"android",
"browser",
"ios"
],
"plugins": {
"cordova-plugin-whitelist": {}
}
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --inline --hot --content-base www",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"android": "cordova run android",
"ios": "cordova run ios",
"serve": "cordova serve --port 8080",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"engine": "node >= 6.0.0",
"dependencies": {
"cordova": "^7.1.0",
"cordova-android": "^6.3.0",
"cordova-plugin-whitelist": "^1.3.2",
"vue": "^2.5.2",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"friendly-errors-webpack-plugin": "^1.6.1",
"vue-loader": "^13.3.0",
"vue-template-compiler": "^2.5.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^3.1.11"
}
}