-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
{
"name": "nuxt-app",
"type": "module",
"private": true,
"scripts": {
"build": "nuxi build",
"dev": "nuxi dev",
"generate": "nuxi generate",
"postinstall": "nuxi prepare",
"lint": "eslint .",
"preview": "nuxi preview",
"typecheck": "nuxti typecheck"
},
"dependencies": {
"@pinia/nuxt": "^0.4.11",
"dotenv": "^16.1.4",
"firebase": "^9.22.2",
"firebase-admin": "^11.9.0",
"vuetify": "^3.5.5",
"vuetify-nuxt-module": "^0.5.6",
"yup": "^1.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@iconify-json/mdi": "^1.1.64",
"@nuxtjs/color-mode": "^3.3.2",
"@nuxtjs/tailwindcss": "^6.11.4",
"@unocss/nuxt": "^0.58.5",
"@unocss/preset-icons": "^0.58.5",
"@vueuse/nuxt": "^10.7.2",
"eslint": "npm:eslint-ts-patch@^8.56.0-0",
"eslint-plugin-format": "^0.1.0",
"eslint-ts-patch": "^8.56.0-0",
"lint-staged": "^15.2.0",
"nuxt": "^3.10.1",
"nuxt-lodash": "^2.5.3",
"sass": "^1.63.6",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.1.3",
"unplugin-fonts": "^1.1.1"
},
"overrides": {
"vue": "3.3.13"
},
"resolutions": {
"vue": "3.3.13"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}