-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 890 Bytes
/
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
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"lint": "eslint .",
"lintfix": "eslint . --fix",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --cache",
"eslint --fix"
]
},
"devDependencies": {
"@nuxt/eslint-config": "0.1.1",
"@nuxt/image-edge": "1.0.0-27954023.4cee565",
"@nuxtjs/eslint-config-typescript": "12.0.0",
"@nuxtjs/google-fonts": "3.0.0-1",
"@nuxtjs/tailwindcss": "6.4.1",
"eslint": "8.35.0",
"husky": "8.0.3",
"lint-staged": "13.1.2",
"nuxt": "^3.2.2",
"nuxt-icon": "0.3.2"
},
"dependencies": {
"@pinia/nuxt": "0.4.7",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.3",
"pinia": "2.0.32"
}
}