-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathpackage.json
110 lines (110 loc) · 3.31 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
{
"name": "vue3-base-type",
"version": "0.1.22",
"description": "一个使用vue3+typescript 搭建的项目基础架构类型声明库",
"author": {
"name": "ibwei",
"email": "[email protected]",
"url": "http://me.ibwei.com"
},
"scripts": {
"serve": "vue-cli-service serve --stats-json",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0 -s",
"commit": "npx cz",
"docs": "typedoc --out ./docs/ ./src/ && npm run serve:docs",
"serve:docs": "http-server ./docs -p 3001 -o",
"test:unit": "vue-cli-service test:unit",
"test-dev:unit": "vue-cli-service test:unit --watch",
"test:api": "vue-cli-service test:unit ./tests/api/*.spec.ts",
"test-dev:api": "vue-cli-service test:unit ./tests/api/*.spec.ts --watch",
"analysis": "cross-env use_analyzer=true vue-cli-service build",
"prepare": "husky install"
},
"main": "dist/index.js",
"files": [
"@types"
],
"dependencies": {
"@vueuse/core": "^4.0.0-beta.16",
"ant-design-vue": "^2.0.0-beta.9",
"axios": "^0.20.0",
"core-js": "^3.6.5",
"moment": "^2.27.0",
"vue": "^3.0.0",
"vue-composable": "^1.0.0-beta.10",
"vue-router": "^4.0.0-0",
"vuex": "^4.0.0-0",
"vuex-persistedstate": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/chai": "^4.2.11",
"@types/lodash": "^4.14.161",
"@types/mocha": "^5.2.4",
"@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-mocha": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0-0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^2.0.0-0",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.0",
"chai": "^4.1.2",
"commitizen": "^4.2.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"deepmerge": "^4.2.2",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^7.0.0-0",
"http-server": "^0.12.3",
"husky": "^6.0.0",
"less": "^2.7.0",
"less-loader": "^5.0.0",
"lint-staged": "^10.5.1",
"prettier": "^1.19.1",
"style-resources-loader": "^1.3.2",
"ts-node": "^9.0.0",
"typedoc": "^0.19.0",
"typescript": "4.0.2",
"vue-cli-plugin-style-resources-loader": "~0.1.4",
"webpack-bundle-analyzer": "^4.3.0"
},
"lint-staged": {
"src/**/*.{jsx,txs,ts,js,json,vue,md}": [
"vue-cli-service lint",
"git add"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"keywords": [
"vue3",
"typescript",
"base"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ibwei/vue3-base"
},
"types": "./@types/index.d.ts"
}