-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"name": "tia-web",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"preview": "wrangler pages dev dist",
"deploy": "wrangler pages deploy dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"wrangler": "wrangler",
"prepare": "husky",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxt/fonts": "^0.10.2",
"@nuxt/image": "^1.8.1",
"@nuxt/ui": "2.19.2",
"@nuxtjs/i18n": "^9.1.0",
"@nuxtjs/seo": "^2.0.2",
"nuxt": "^3.14.1592",
"vue": "latest",
"vue-router": "latest",
"vue-sonner": "^1.3.0"
},
"devDependencies": {
"@iconify-json/mdi": "^1.2.1",
"@nuxt/eslint": "^0.7.2",
"@nuxthub/core": "^0.8.7",
"@tailwindcss/line-clamp": "^0.4.4",
"@zl-asica/prettier-config": "^1.0.9",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"postcss": "^8.4.49",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"typescript": "~5.6",
"vite-plugin-eslint2": "^5.0.3",
"vue-tsc": "^2.1.10",
"wrangler": "^3.91.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}