forked from AT-UI/at-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.72 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
{
"name": "at-ui",
"version": "1.3.3",
"description": "A UI Component Library with Vue.js",
"homepage": "https://at.aotu.io",
"main": "dist/at.js",
"engines": {
"node": ">=6"
},
"scripts": {
"dev": "nodemon build/dev-server",
"lint": "eslint --ext .js,.vue src docs build --ignore-pattern src/stylesheet test/unit/specs test/e2e/specs",
"dist": "npm run build:locale && npm run build:component && npm run build:doc",
"build:doc": "webpack --config build/webpack.prod.conf.js -p",
"build:component": "node build/component",
"build:locale": "node build/locale",
"prepublish": "npm run build:locale && npm run build:component"
},
"repository": {
"type": "git",
"url": "[email protected]:at-ui/at-ui.git"
},
"bugs": {
"url": "https://github.com/at-ui/at-ui/issues"
},
"keywords": [
"at",
"at-ui",
"desktop",
"ui",
"framework",
"component"
],
"files": [
"dist/locale",
"dist/at.js",
"dist/at.min.js",
"src"
],
"author": "Koppt Ho <[email protected]>",
"license": "MIT",
"dependencies": {
"vue": "^2.5.13",
"vue-i18n": "^7.4.1",
"vue-router": "^2.8.1",
"deepmerge": "^2.0.1",
"vue-template-compiler": "^2.5.13"
},
"devDependencies": {
"autoprefixer": "^7.2.5",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cheerio": "^0.22.0",
"clipboard": "^1.7.1",
"connect-history-api-fallback": "^1.5.0",
"cross-env": "^5.1.3",
"css-loader": "^0.28.9",
"eslint": "^4.16.0",
"eslint-config-o2team": "^0.1.6",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.2.2",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^2.1.2",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^0.11.2",
"highlight.js": "^9.12.0",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.17.4",
"json-loader": "^0.5.7",
"markdown-it": "^8.4.0",
"markdown-it-container": "^2.0.0",
"node-sass": "^4.7.2",
"nodemon": "^1.14.11",
"ora": "^1.3.0",
"postcss-loader": "^2.0.10",
"postcss-url": "^7.3.0",
"resolve-url-loader": "^2.2.1",
"sass-loader": "^6.0.6",
"shelljs": "^0.7.8",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"vue-html-loader": "^1.2.4",
"vue-loader": "^12.2.2",
"vue-markdown-loader": "^1.0.0",
"vue-style-loader": "^3.1.1",
"webpack": "^2.7.0",
"webpack-bundle-analyzer": "^2.9.2",
"webpack-dashboard": "^0.4.0",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.21.0",
"webpack-merge": "^4.1.1",
"yaml-loader": "^0.4.0"
}
}