-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.38 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
70
71
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"analyze:bundle": "nuxi analyze",
"typecheck": "nuxi typecheck",
"lint:fix": "eslint --fix",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "NODE_OPTIONS='--import ./core/public/instrument.server.mjs' nuxt preview",
"start": "node --import .output/public/instrument.server.mjs .output/server/index.mjs",
"postinstall": "nuxt prepare",
"prepare": "husky"
},
"dependencies": {
"@iconify/json": "^2.2.247",
"@nuxt/eslint": "^0.5.6",
"@nuxt/fonts": "^0.8.0",
"@nuxt/icon": "^1.5.1",
"@nuxtjs/tailwindcss": "^6.12.1",
"@pinia/nuxt": "^0.5.4",
"@sidebase/nuxt-auth": "^0.9.2",
"@tanstack/vue-query": "^5.56.2",
"@vee-validate/nuxt": "^4.13.2",
"@vee-validate/yup": "^4.13.2",
"@vueuse/core": "^11.0.3",
"@vueuse/nuxt": "^11.0.3",
"dayjs": "^1.11.13",
"floating-vue": "^5.2.2",
"maska": "^3.0.2",
"nuxt": "^3.13.1",
"vue": "latest",
"yup": "^1.4.0"
},
"devDependencies": {
"@faker-js/faker": "^9.0.0",
"@nuxt/test-utils": "^3.14.2",
"@sentry/nuxt": "^8.30.0",
"@testing-library/vue": "^8.1.0",
"@vitest/coverage-v8": "^2.1.1",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^15.7.4",
"husky": "^9.1.5",
"jest-extended": "^4.0.2",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^15.2.10",
"msw": "^2.4.1",
"playwright-core": "^1.47.1",
"typescript": "^5.5.4",
"vitest": "^2.1.1",
"vue-tsc": "^2.1.4"
},
"lint-staged": {
"*.vue": "npm run lint:fix",
"**/components/**/*.{vue,js,jsx,ts,tsx,md,html,css}": "npm run lint:fix",
"**/composables/**/*.{vue,js,jsx,ts,tsx,md,html,css}": "npm run lint:fix",
"**/config/**/*.{vue,js,jsx,ts,tsx,md,html,css}": "npm run lint:fix",
"**/layouts/**/*.{vue,js,jsx,ts,tsx,md,html,css}": "npm run lint:fix",
"**/middleware/**/*.{vue,js,jsx,ts,tsx,md,html,css}": "npm run lint:fix",
"**/mocks/**/*.{vue,js,jsx,ts,tsx,md,html,css}": "npm run lint:fix",
"**/pages/**/*.{vue,js,jsx,ts,tsx,md,html,css}": "npm run lint:fix",
"**/plugins/**/*.{vue,js,jsx,ts,tsx,md,html,css}": "npm run lint:fix",
"**/stores/**/*.{vue,js,jsx,ts,tsx,md,html,css}": "npm run lint:fix",
"**/utils/**/*.{vue,js,jsx,ts,tsx,md,html,css}": "npm run lint:fix"
},
"overrides": {
"vue": "latest"
}
}