-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.61 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"start": "node .output/server/index.mjs",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"generate": "nuxt generate",
"preview": "nuxt preview",
"typecheck": "nuxt typecheck",
"analyze": "nuxt analyze",
"postinstall": "nuxt prepare",
"gen:api-client": "rimraf -I lib/api && docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli generate -i https://raw.githubusercontent.com/traPtitech/game3-back/main/docs/openapi.yaml -g typescript-fetch -o /local/lib/api",
"gen:api-mock": "msw-auto-mock https://raw.githubusercontent.com/traPtitech/game3-back/main/docs/openapi.yaml -o ./mocks/handlers.ts --base-url http://localhost:3000/api"
},
"devDependencies": {
"@faker-js/faker": "^8.4.0",
"@iconify-json/logos": "^1.1.42",
"@iconify-json/tabler": "^1.1.104",
"@nuxt/content": "^2.9.0",
"@nuxt/devtools": "latest",
"@nuxt/eslint": "^0.3.12",
"@nuxtjs/google-fonts": "^3.1.3",
"@nuxtjs/sitemap": "^5.1.0",
"@tanstack/eslint-plugin-query": "^5.18.1",
"@unocss/eslint-config": "^0.60.2",
"@unocss/nuxt": "^0.60.2",
"@unocss/transformer-variant-group": "^0.60.2",
"@vueuse/core": "^10.7.2",
"@vueuse/nuxt": "^10.7.2",
"eslint": "^9.2.0",
"eslint-config-flat-gitignore": "^0.1.5",
"msw": "^2.1.5",
"msw-auto-mock": "^0.18.0",
"nuxt": "^3.12.4",
"nuxt-gtag": "^2.0.5",
"rimraf": "^5.0.5",
"unocss": "^0.60.2",
"vue": "^3.3.8",
"vue-router": "^4.2.5",
"vue-tsc": "^2.0.19"
},
"dependencies": {
"@nuxtjs/robots": "^4.0.2",
"@tanstack/vue-query": "^5.8.7",
"@tanstack/vue-table": "^8.11.7",
"@unocss/reset": "^0.60.2",
"@vee-validate/nuxt": "^4.13.2",
"@vee-validate/valibot": "^4.13.2",
"@vuepic/vue-datepicker": "^9.0.1",
"date-fns": "^3.3.1",
"linkify-html": "^4.1.3",
"linkifyjs": "^4.1.3",
"radix-vue": "^1.2.2",
"sass": "^1.70.0",
"valibot": "^0.33.3",
"vee-validate": "^4.12.4",
"vue-advanced-cropper": "^2.8.8",
"vue-toast-notification": "^3",
"xss": "^1.0.15"
},
"peerDependencies": {
"eslint": ">=9.0.0"
},
"packageManager": "[email protected]+sha256.2d0363bb6c314daa67087ef07743eea1ba2e2d360c835e8fec6b5575e4ed9484",
"msw": {
"workerDirectory": [
"public"
]
},
"pnpm": {
"supportedArchitectures": {
"os": [
"linux"
],
"cpu": [
"x64"
],
"libc": [
"glibc",
"musl"
]
}
},
"engines": {
"node": ">=20.0.0"
}
}