-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.9 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "vue-cactus-ui",
"version": "0.1.8",
"description": "a vue 2.x web ui",
"main": "lib/cactus-ui.common.js",
"private": false,
"keywords": [
"vue",
"components"
],
"author": "yang",
"license": "ISC",
"scripts": {
"dev": "webpack-dev-server --inline --config ./build/webpack.dev.conf.js",
"build:doc": "webpack --progress --config ./build/webpack.doc.conf.js",
"build:comp": "webpack --progress --config ./build/webpack.component.conf.js",
"build:theme": "webpack --progress --config ./build/webpack.theme.conf.js",
"build:ui": "yarn build:comp && yarn build:theme",
"test": "jest --config test/jest.config.js",
"prettier": "prettier --write .",
"deploy:doc": "yarn build:doc && gh-pages -d dist"
},
"dependencies": {
"@vue/composition-api": "^1.0.0-rc.6",
"core-js": "^3.6.5",
"vue": "2.6.10",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.5.0",
"vue-types": "^2.0.3"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/preset-env": "7.5.5",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vue/babel-preset-app": "^4.5.12",
"@vue/babel-preset-jsx": "^1.1.2",
"@vue/cli-plugin-babel": "^4.5.12",
"@vue/cli-plugin-typescript": "^4.5.12",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^1.1.4",
"autoprefixer": "^10.0.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.2",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"babel-plugin-jsx-v-model": "^2.0.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"babel-preset-vca-jsx": "^0.3.6",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "5.0.4",
"css-loader": "2.1.1",
"deepmerge": "^4.2.2",
"docsearch.js": "^2.6.3",
"eslint": "5.16.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "12.0.0",
"eslint-loader": "2.2.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.0",
"eslint-plugin-vue": "5.2.3",
"eslint-plugin-vue-types": "^2.0.0",
"file-loader": "4.2.0",
"friendly-errors-webpack-plugin": "1.7.0",
"gh-pages": "^3.2.3",
"highlight.js": "^9.18.1",
"html-webpack-plugin": "3.2.0",
"husky": "2.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-serializer-vue": "2.0.2",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "8.2.1",
"markdown-it-anchor": "^5.2.5",
"markdown-it-chain": "^1.3.0",
"markdown-it-container": "^2.0.0",
"mini-css-extract-plugin": "0.5.0",
"node-sass": "4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^8.1.7",
"postcss-loader": "^4.0.4",
"prettier": "2.2.1",
"sass-loader": "7.2.0",
"style-loader": "0.23.1",
"stylus": "0.54.5",
"stylus-loader": "3.0.2",
"transliteration": "^2.1.8",
"ts-jest": "^26.5.4",
"ts-loader": "^7.0.5",
"typescript": "^4.2.4",
"uglify-es": "3.3.9",
"url-loader": "1.1.2",
"vue-jest": "^3.0.7",
"vue-loader": "15.7.0",
"vue-markdown": "^2.2.4",
"vue-router": "3.0.6",
"vue-style-loader": "4.1.2",
"vue-template-compiler": "2.6.10",
"webpack": "4.39.2",
"webpack-cli": "3.3.6",
"webpack-dev-server": "3.8.0",
"webpack-merge": "4.2.1"
},
"files": [
"lib",
"src",
"packages",
"types"
],
"publishConfig": {
"access": "public"
}
}