This repository has been archived by the owner on Aug 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.54 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
{
"private": true,
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"analyze": "nuxt analyze",
"preview": "nuxt preview",
"test:unit": "vitest",
"test:unit:ci": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ci": "CI=true playwright test",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.html --max-warnings 0 --ignore-path .gitignore",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.html --fix --ignore-path .gitignore",
"prepare": "nuxt prepare && husky install"
},
"devDependencies": {
"@nuxt/test-utils": "^3.4.1",
"@nuxtjs/color-mode": "^3.2.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/i18n": "^8.0.0-beta.7",
"@nuxtjs/tailwindcss": "^6.6.6",
"@playwright/test": "^1.32.3",
"@vitest/coverage-c8": "^0.33.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jsdom": "^21.1.1",
"lint-staged": "^13.2.1",
"nuxt": "3.4.1",
"nuxt-font-loader": "^2.3.1",
"nuxt-icon": "^0.3.3",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"typescript": "^5.0.4",
"vitest": "^0.30.1",
"vue-tsc": "^1.2.0"
},
"dependencies": {
"@pinia/nuxt": "^0.4.8",
"@vueuse/core": "^10.0.2",
"@vueuse/nuxt": "^10.0.2"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts,html}": [
"eslint --max-warnings 0 --ignore-path .gitignore"
]
}
}