-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.04 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
{
"name": "wicogotblog",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"prepare": "husky",
"format": "prettier-eslint --write --prettier-last '**/*.{js,jsx,vue,ts,html,json}' --ignore **/.vitepress/cache/** && vue-tsc",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@octokit/core": "^6.1.2",
"@octokit/rest": "^20.1.1",
"@types/mermaid": "^9.2.0",
"gray-matter": "^4.0.3",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"markdown-it-task-checkbox": "^1.0.6",
"postcss-import": "^16.1.0",
"postcss-nesting": "^12.1.2",
"ts-node": "^10.9.2",
"v-viewer": "^3.0.13",
"viewerjs": "^1.11.6",
"vite-plugin-eslint": "^1.8.1",
"vite-svg-loader": "^5.1.0",
"vue": "^3.4.21"
},
"devDependencies": {
"@octokit/types": "^13.5.0",
"@types/lodash": "^4.17.4",
"@types/luxon": "^3.4.2",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.19",
"eslint": "~8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.23.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mermaid": "^10.9.1",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"prettier-eslint-cli": "^8.0.1",
"sass": "^1.75.0",
"tailwindcss": "^3.4.3",
"typescript": "~5.4",
"vite": "^5.1.6",
"vitepress": "^1.1.3",
"vitepress-plugin-mermaid": "^2.0.16",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^2.0.29"
},
"lint-staged": {
"**/*.{ js,jsx,vue,ts,html,json}": "prettier-eslint --write --prettier-last --ignore **/.vitepress/cache/** && vue-tsc"
}
}