-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
74 lines (74 loc) · 2.15 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
{
"name": "@mysigmail/card",
"type": "module",
"version": "0.7.1",
"private": true,
"author": "Anton Reshetov",
"engines": {
"pnpm": ">=8.0.0",
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit --skipLibCheck && vite build",
"preview": "vite preview",
"lint": "vue-tsc --noEmit && eslint --ext .js,.ts,.vue . src",
"lint:fix": "eslint --ext .js,.ts,.vue . --fix src",
"release": "bumpp -c 'build: release v' -t",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@iconscout/unicons": "^4.0.8",
"@mysigmail/menu-aim": "^1.0.5",
"@mysigmail/vue-email-components": "^0.2.2",
"@tiptap/extension-bold": "^2.1.13",
"@tiptap/extension-color": "^2.1.13",
"@tiptap/extension-document": "^2.1.13",
"@tiptap/extension-hard-break": "^2.1.13",
"@tiptap/extension-italic": "^2.1.13",
"@tiptap/extension-link": "^2.1.13",
"@tiptap/extension-paragraph": "^2.1.13",
"@tiptap/extension-text": "^2.1.13",
"@tiptap/extension-text-align": "^2.1.13",
"@tiptap/extension-text-style": "^2.1.13",
"@tiptap/extension-underline": "^2.1.13",
"@tiptap/vue-3": "^2.1.13",
"element-plus": "^2.4.1",
"nanoid": "^5.0.2",
"sortablejs": "^1.15.0",
"vue": "^3.3.7"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.29",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@types/sortablejs": "^1.15.4",
"@vitejs/plugin-vue": "^4.4.0",
"bumpp": "^9.2.0",
"eslint": "^8.52.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"sass": "^1.69.5",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.16.7",
"unplugin-icons": "^0.17.1",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.5.0",
"vue-tsc": "^1.8.22"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit $1"
},
"lint-staged": {
"*.{js,ts,vue}": [
"prettier --write",
"eslint --fix"
]
},
"volta": {
"node": "20.9.0"
}
}