-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.61 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
{
"version": "0.0.1",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Wizard67/comz.git"
},
"bugs": {
"url": "https://github.com/Wizard67/comz/issues"
},
"homepage": "https://github.com/Wizard67/comz#readme",
"author": "Wizard67<wizard67.hjn@gmail.com>",
"license": "MIT",
"scripts": {
"build": "yarn workspaces run build",
"lint": "yarn lint:ts && yarn lint:vue",
"lint:ts": "prettier --check --write --parser typescript \"packages/**/*.ts\"",
"lint:vue": "prettier --check --write --parser vue \"packages/**/*.vue\"",
"test": "jest"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"prettier --parser=typescript --write"
],
"*.vue": [
"prettier --parser=vue --write"
]
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/jest": "^26.0.13",
"@vue/compiler-sfc": "^3.0.11",
"@vue/test-utils": "^2.0.0-rc.2",
"babel-jest": "^26.3.0",
"jest": "^26.5.3",
"jest-mock-warn": "^1.1.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rollup": "^2.26.10",
"rollup-plugin-typescript2": "^0.28.0",
"rollup-plugin-vue": "^6.0.0",
"ts-jest": "^26.4.1",
"typescript": "^4.2.2",
"vue": "^3.0.11",
"vue-jest": "^3.0.7",
"yorkie": "^2.0.0"
},
"dependencies": {},
"resolutions": {
"**/vitepress/vite": "^2.2.1",
"**/vitepress/vue": "^3.0.11",
"**/vitepress/@vue/compiler-sfc": "^3.0.11"
}
}