-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.54 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "lcx-ui",
"private": true,
"version": "1.1.0",
"description": "一款用于自用的学习性 UI 框架",
"main": "lib/mui.cjs.js",
"module": "lib/mui.esm.js",
"unpkg": "lib/mui.unpkg.min.js",
"style": "lib/theme-chalk/index.css",
"typings": "lib/packages/index.d.ts",
"workspaces": [
"packages/*"
],
"files": [
"docs",
"packages",
"lib",
"types"
],
"author": "luchx1993@gmail.com",
"repository": {
"type": "git",
"url": "git+https://github.com/luchx/ECHI_UI.git"
},
"scripts": {
"bootstrap": "yarn install",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"release": "rimraf lib && npm run build:lib && npm run build:theme && npm run build:esm",
"build:lib": "rollup -c",
"build:esm": "node ./scripts/bootstrap.js",
"build:theme": "rimraf packages/theme-chalk/lib && gulp build --gulpfile packages/theme-chalk/gulpfile.js && cp-cli packages/theme-chalk/lib lib/theme-chalk && rimraf packages/theme-chalk/lib",
"clear": "rimraf lib && rimraf packages/theme-chalk/lib",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"async-validator": "^3.5.1",
"core-js": "^3.8.3",
"element-ui": "^2.15.0",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"vue": "^2.6.11",
"vue-codemirror": "^4.0.6",
"vue-router": "^3.2.0",
"vuex": "^3.4.0"
},
"devDependencies": {
"@rollup/plugin-alias": "^2.2.0",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-image": "^2.0.6",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.2",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "^4.5.11",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.1.3",
"babel-plugin-component": "^1.1.1",
"chalk": "^4.1.0",
"conventional-changelog-cli": "^2.1.1",
"cp-cli": "^2.0.0",
"cross-env": "^7.0.2",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"gulp": "^4.0.2",
"lerna": "^3.22.1",
"lint-staged": "^9.5.0",
"md-enhance-vue": "^1.0.2",
"minimist": "^1.2.5",
"node-sass": "^4.12.0",
"ora": "^5.3.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"rollup": "^2.7.3",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-vue": "5.1.9",
"sass-loader": "^8.0.2",
"typescript": "~3.9.3",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"element-ui": "^2.15.0",
"vue": "^2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"npm run lint",
"git add"
]
},
"engines": {
"node": ">=10.0.0"
}
}