-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.06 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
{
"name": "vue3-map-chart-monorepo",
"version": "0.0.1",
"description": "A monorepo template for developing Vue libraries",
"author": "Noé Gnanih <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"docs": "pnpm -F docs run dev",
"dev": "pnpm -F playground run dev",
"test": "pnpm -F vue3-map-chart run test",
"build": "pnpm build-plugin && pnpm build-playground && pnpm build-docs",
"build-plugin": "pnpm -r -F vue3-map-chart run build",
"build-playground": "pnpm -F playground run build",
"build-docs": "pnpm -F docs run build",
"lint": "eslint --ext .js,.ts,.vue .",
"lint:fix": "eslint --ext .js,.ts,.vue . --fix",
"format": "prettier . --write",
"commit": "git add --all && git commit",
"commit-push": "git add --all && git commit && git push origin --all",
"execute-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,vue}": [
"eslint . --fix",
"prettier . --write"
]
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^16.18.98",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/compiler-dom": "^3.4.27",
"@vue/compiler-sfc": "^3.4.27",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.26.0",
"husky": "^8.0.3",
"jsdom": "^21.1.2",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"typescript": "^4.9.5",
"unplugin-auto-import": "^0.15.3",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.5.3",
"vitest": "^0.28.5",
"vue": "^3.4.27",
"vue-tsc": "^1.8.27"
}
}