-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.33 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.33 KB
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
{
"name": "rummikub",
"private": true,
"type": "module",
"scripts": {
"test": "vitest",
"test:smoke": "npx nuxi typecheck",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"deps:check": "npx depcruise app",
"deps:overview": "npx depcruise app --config ./.dependencyCruise/overview.cjs --output-type archi | dot -T svg | npx depcruise-wrap-stream-in-html > .dependencyCruise/graphs/overview.html",
"deps:full": "npx depcruise app --config ./.dependencyCruise/full.cjs --output-type ddot | dot -T svg | npx depcruise-wrap-stream-in-html > .dependencyCruise/graphs/full.html",
"storybook": "storybook dev --port 6006",
"build-storybook": "storybook build",
"release": "release-it"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/icon": "^1.5.2",
"@nuxt/test-utils": "^3.14.3",
"@nuxt/ui": "^2.18.6",
"@nuxtjs/color-mode": "^3.5.1",
"@nuxtjs/i18n": "^8.3.1",
"@nuxtjs/storybook": "8.2.0",
"@nuxtjs/tailwindcss": "^6.12.1",
"@playwright/test": "^1.47.2",
"@storybook/addon-essentials": "8.2.7",
"@storybook/addon-interactions": "8.2.7",
"@storybook/addon-links": "8.2.7",
"@storybook/blocks": "8.2.7",
"@storybook/builder-vite": "8.2.7",
"@storybook/test": "8.2.7",
"@storybook/vue3": "8.2.7",
"@types/node": "^18.17.5",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.19",
"dependency-cruiser": "^16.4.2",
"h3": "1.12.0",
"happy-dom": "^15.7.4",
"nuxt": "^3.13.2",
"playwright-core": "^1.47.2",
"postcss": "^8.4.38",
"release-it": "^17.7.0",
"storybook": "8.2.7",
"tailwindcss": "^3.4.3",
"typescript": "^5.6.2",
"vite-svg-loader": "^5.1.0",
"vitest": "^2.1.2",
"vue-tsc": "^2.1.6"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"dependencies": {
"@heroicons/vue": "^2.1.3",
"@vueuse/components": "^11.0.3",
"random-words": "^2.0.1",
"socket.io": "4.7.5",
"socket.io-client": "4.7.5",
"uuid": "^10.0.0",
"vuedraggable": "^4.1.0",
"zod": "^3.23.8"
},
"version": "1.1.0"
}