This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.75 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
{
"name": "hidden-link",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky install",
"lint": "eslint --ignore-path .gitignore --ext .js,.cjs,.ts,.vue .",
"fmt": "prettier --check .",
"fmt:fix": "prettier --cache --write .",
"test": "vitest --run --coverage",
"test:dev": "vitest",
"cypress": "cypress run",
"cypress:open": "cypress open",
"typecheck": "nuxt typecheck"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/test-utils": "^3.8.1",
"@nuxtjs/color-mode": "^3.3.2",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/i18n": "8.0.0-rc.6",
"@nuxtjs/tailwindcss": "^6.10.1",
"@types/quill": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vercel/analytics": "^1.1.1",
"@vercel/kv": "^1.0.0",
"@vitest/coverage-v8": "^0.34.6",
"@vue/eslint-config-typescript": "^12.0.0",
"@vueuse/nuxt": "^10.6.1",
"cypress": "^13.6.0",
"daisyui": "^4.4.19",
"date-fns": "^2.30.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-unicorn": "^49.0.0",
"eslint-plugin-vue": "^9.19.2",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"nuxt": "^3.8.2",
"nuxt-icon": "^0.6.6",
"nuxt-security": "1.0.0-rc.4",
"prettier": "^3.1.0",
"quill": "^1.3.7",
"vitest": "^0.34.6",
"vue": "^3.3.9",
"vue-eslint-parser": "^9.3.2",
"vue-router": "^4.2.5"
},
"dependencies": {
"@nuxtjs/web-vitals": "^0.2.6"
}
}