-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.91 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": "frite.dev",
"version": "1.0.15",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"patch": "npm version patch --no-git-tag-version",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky",
"test": "vitest run",
"coverage": "vitest run --coverage",
"upgrade": "nuxi upgrade",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"deploy": "firebase deploy"
},
"lint-staged": {
"*.{ts,js,vue,css,json,yaml}": [
"npx prettier --list-different",
"npx eslint"
]
},
"devDependencies": {
"@iconify-json/flag": "^1.2.2",
"@iconify-json/iconoir": "^1.2.3",
"@iconify-json/logos": "^1.2.3",
"@iconify-json/simple-icons": "^1.2.11",
"@iconify-json/tabler": "^1.2.7",
"@iconify-json/tdesign": "^1.2.2",
"@iconify-json/vscode-icons": "^1.2.2",
"@nuxt/devtools": "latest",
"@nuxt/eslint": "^0.6.1",
"@nuxt/fonts": "^0.10.2",
"@nuxt/scripts": "^0.9.5",
"@nuxt/test-utils": "^3.14.4",
"@nuxt/ui": "^2.19.2",
"@nuxtjs/seo": "^2.0.0-rc.23",
"@rollup/plugin-yaml": "^4.1.2",
"@tailwindcss/forms": "^0.5.9",
"@vue/test-utils": "^2.4.6",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.30.0",
"happy-dom": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nuxt": "^3.14.159",
"nuxt-security": "^2.0.0",
"playwright-core": "^1.48.2",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"typescript": "^5.6.3",
"vite-plugin-eslint2": "^5.0.2",
"vitest": "^2.1.4",
"vue": "latest",
"vue-tsc": "^2.1.10"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@vueuse/components": "^11.2.0",
"@vueuse/core": "^11.2.0",
"zod": "^3.23.8"
}
}