-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.11 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": "fun-km",
"description": "A multi-person collaborative knowledge base system that supports multi-tenants",
"packageManager": "[email protected]",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint:eslint": "eslint --ext .js,.ts,.vue,.jsx,.tsx .",
"lint:prettier": "prettier --write --log-level warn \"**/*.{js,ts,json,jsx,tsx,css,less,scss,vue,html,md}\"",
"lint:lint-staged": "lint-staged",
"prepare": "husky",
"preinstall": "npx only-allow pnpm"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.14.0"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.2",
"@iconify-json/grommet-icons": "^1.1.10",
"@nuxt/image": "^1.7.0",
"@nuxt/ui": "^2.15.2",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/supabase": "^1.2.2",
"@pinia/nuxt": "^0.5.1",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"dayjs": "^1.11.11",
"v-calendar": "^3.1.2",
"vue": "^3.4.26",
"vue-router": "^4.3.2",
"zod": "^3.23.6"
},
"devDependencies": {
"@nuxtjs/seo": "2.0.0-rc.10",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.25.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nuxt": "^3.11.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"sass": "^1.76.0",
"vue-eslint-parser": "^9.4.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix",
"prettier --write"
],
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
"prettier --write--parser json"
],
"package.json": [
"prettier --write"
],
"*.{scss,less,styl,html,md}": [
"prettier --write"
]
}
}