forked from app-case-community/easy-weex-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.88 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
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "easy-weex",
"version": "1.0.0",
"description": "weex native and web build boilerplate",
"scripts": {
"build": "cross-env NODE_ENV=production easy build prod",
"start": "cross-env NODE_ENV=develop easy start",
"lint": "eslint .",
"fix": "eslint --fix . --ext .js,.vue",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{json,scss,css,md}": [
"prettier --write",
"git add"
],
"*.{js,vue}": [
"npm run fix",
"git add"
]
},
"dependencies": {
"@weex-project/weex-picker": "^0.2.4",
"extend": "^3.0.0",
"file-loader": "git+https://github.com/snice/file-loader.git#0.11.3",
"flyio": "^0.6.2",
"gcanvas.js": "^0.0.8",
"lighting-ui": "^0.3.100",
"lodash": "^4.17.19",
"lottie-web": "^5.4.2",
"moment": "^2.17.1",
"universal-env": "^0.6.6",
"v-miniui": "0.0.3",
"validator": "^10.9.0",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0",
"webpack-tool": "^3.1.1",
"weex-amui": "^0.1.1",
"weex-bindingx": "^0.0.49",
"weex-bui": "https://gitee.com/snicesoft/weex-bui.git",
"weex-droplet-ui": "^1.0.0-alpha.100",
"weex-flymeui": "https://gitee.com/snicesoft/weex-flymeui.git",
"weex-ui": "^0.6.7",
"weex-vue-render": "^0.12.32"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-component": "0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^1.0.0",
"cross-env": "^5.2.0",
"easywebpack": "https://gitee.com/snicesoft/easywebpack.git#3.10.5",
"easywebpack-cli": "^3.12.1",
"easywebpack-weex": "https://gitee.com/snicesoft/easywebpack-weex.git",
"eslint": "^5.9.0",
"eslint-config-eslint": "^5.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^4.7.1",
"html-webpack-plugin": "^3.2.0",
"imagemin-webpack-plugin": "^2.3.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"uglifyjs-webpack-plugin": "1.1.5",
"webpack": "^3.12.0"
},
"engines": {
"node": ">=6.0.0"
},
"ci": {
"version": "6, 8, 10"
},
"repository": {
"type": "git",
"url": "https://github.com/hubcarl/easywebpack-weex-boilerplate.git"
},
"author": "[email protected]",
"webpack": {
"loaders": {
"scss": true
}
}
}