-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lintfix": "eslint --fix .",
"test": "vitest run",
"test:ui": "vitest --coverage --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"clean:tests": "rm -rf coverage html",
"static:build" : "nuxi generate && npx serve .output/public"
},
"dependencies": {
"@nuxt/eslint": "^0.3.13",
"nuxt": "^3.12.2",
"swiper": "^11.1.5",
"vue": "^3.4.29",
"vue-router": "^4.3.3"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610",
"devDependencies": {
"@nuxt/eslint-config": "^0.3.13",
"@nuxt/test-utils": "^3.13.1",
"@vitest/coverage-v8": "^2.0.1",
"@vitest/ui": "^2.0.1",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.19",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jsdom": "^24.1.0",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2",
"vitest": "^2.0.1",
"vue-tsc": "^2.0.24"
}
}