-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.54 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
100
101
102
103
104
{
"name": "xcui",
"version": "2.1.5",
"main": "lib/xcui.common.js",
"engines": {
"node": ">=5.10.0",
"npm": ">=5.0.0"
},
"description": "Desktop web UI based on Vue2.0",
"theme": "./custom.js",
"keywords": [
"xcui",
"vue",
"vue-components",
"web-components",
"ui-components",
"component",
"components",
"desktop ui",
"framework",
"frontend"
],
"author": "wmfe",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wmfe/xcui"
},
"scripts": {
"dev": "node build/dev-server.js",
"site": "rimraf site && node build/build-site.js",
"site:local": "rimraf site && cross-env SITE=local node build/build-site.js",
"build": "npm run build:lib && npm run site",
"build:lib": "rimraf lib && npm run build:bundle && npm run build:components && npm run build:utils && npm run build:css",
"build:components": "node build/build-components.js",
"build:css": "node build/build-css.js",
"build:utils": "node build/build-utils.js",
"build:bundle": "node build/build-bundle.js"
},
"dependencies": {
"async-validator": "^1.6.9"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.4.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.0.0",
"babel-runtime": "^6.0.0",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^1.1.1",
"cross-env": "^4.0.0",
"css-loader": "^0.28.4",
"eslint": "^2.5.1",
"eslint-config-standard": "^5.1.0",
"eslint-friendly-formatter": "^1.2.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^1.4.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"file-save": "^0.2.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.29.0",
"http-proxy-middleware": "^0.17.4",
"json-loader": "^0.5.4",
"jsonp": "^0.2.0",
"less": "^2.6.1",
"less-loader": "^4.0.5",
"less-plugin-clean-css": "^1.5.1",
"less-vars-to-js": "^1.1.2",
"markdown-it-container": "^2.0.0",
"ncp": "^2.0.0",
"opn": "^5.1.0",
"optimize-css-assets-webpack-plugin": "^2.0.0",
"ora": "^1.3.0",
"rimraf": "^2.5.0",
"shelljs": "^0.7.8",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^1.0.0-beta.2",
"url-loader": "^0.5.9",
"vue": "^2.4.2",
"vue-hot-reload-api": "^1.2.0",
"vue-html-loader": "^1.2.4",
"vue-loader": "^12.2.2",
"vue-router": "^2.0.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.4.2",
"webpack": "^3.3.0",
"webpack-dev-middleware": "^1.11.0",
"webpack-hot-middleware": "^2.18.2",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.6.0",
"xcui-demo-loader": "^0.1.9"
}
}