generated from divasilevski/nuxt-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.56 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": "nuxt-app",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare && husky install",
"lint": "yarn eslint **/*.{ts,vue}",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"lint-staged": {
"*.{ts,vue}": [
"yarn eslint"
]
},
"resolutions": {
"string-width": "4.2.3"
},
"devDependencies": {
"@nuxt/test-utils": "^3.4.2",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/html-validator": "^1.2.5",
"@nuxtjs/tailwindcss": "^6.6.6",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^20.8.3",
"@vite-pwa/nuxt": "^0.1.1",
"@vitejs/plugin-vue": "^4.1.0",
"@vitest/coverage-v8": "^0.34.5",
"@vue/test-utils": "^2.3.2",
"@vueuse/core": "^10.1.0",
"@vueuse/integrations": "^10.1.2",
"@vueuse/nuxt": "^10.1.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^14.0.1",
"nuxt": "^3.7.4",
"nuxt-purgecss": "^2.0.0",
"prettier": "^3.0.3",
"typescript": "^5.0.4",
"unplugin-auto-import": "^0.16.6",
"vite-plugin-markdown": "^2.1.0",
"vite-svg-loader": "^4.0.0",
"vitest": "^0.34.6"
},
"dependencies": {
"@pinia/nuxt": "^0.4.9",
"idb-keyval": "^6.2.1",
"nanoid": "^5.0.1",
"paper": "^0.12.17",
"pinia": "^2.0.35",
"simplebar-vue": "^2.3.3"
}
}