-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.86 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
{
"name": "kabutack",
"version": "0.1.3",
"license": "MIT",
"keywords": [
"vue3"
],
"author": "Mario34",
"files": [
"lib"
],
"main": "./lib/kabutack.es.js",
"bugs": {
"url": "https://github.com/mario34/kabutack/issues"
},
"homepage": "https://github.com/mario34/kabutack",
"repository": {
"type": "git",
"url": "https://github.com/mario34/kabutack"
},
"scripts": {
"dev": "vite -c ./build/vite.config.docs.ts",
"build:docs": "vite build -c ./build/vite.config.docs.ts",
"build:esm": "vuedx-typecheck ./src && vite build -c ./build/vite.config.esm.ts",
"build": "vuedx-typecheck . && vite build -c ./build/vite.config.esm.ts",
"serve": "vite preview -c ./build/vite.config.docs.ts",
"test": "jest",
"lint": "eslint ./src --ext .vue,.js,.ts",
"lint:fix": "npm run lint -- --fix",
"cz": "git-cz --disable-emoji"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@popperjs/core": "^2.9.0",
"async-validator": "^3.5.1",
"feather-icons": "4.28.0",
"highlight.js": "^10.6.0",
"vue": "^3.0.6",
"vue-router": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"@vitejs/plugin-vue": "^1.1.2",
"@vitejs/plugin-vue-jsx": "^1.0.2",
"@vue/babel-plugin-jsx": "^1.0.2",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-rc.0",
"@vuedx/typecheck": "^0.6.3",
"@vuedx/typescript-plugin-vue": "^0.6.3",
"autoprefixer": "^10.2.4",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "^7.19.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.5.0",
"git-cz": "^4.7.6",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"markdown-it": "^12.0.4",
"markdown-it-anchor": "^7.0.1",
"markdown-it-chain": "^1.3.0",
"markdown-it-container": "^3.0.0",
"markdown-it-toc-done-right": "^4.2.0",
"mitt": "^2.1.0",
"postcss": "^8.2.6",
"sass": "^1.32.8",
"slugify": "^1.4.6",
"stylelint": "^13.9.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.19.0",
"transliteration": "^2.2.0",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"ts-vue-plugin": "^0.1.3",
"typescript": "^4.1.5",
"vite": "^2.0.3",
"vue-jest": "^5.0.0-alpha.7"
}
}