-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.36 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
{
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 nuxt dev --https --ssl-cert ./certs/localhost.pem --ssl-key ./certs/localhost-key.pem --dotenv .env",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"storybook-fix-package": "node fixStorybookPackageJson.js && storybook dev -p 6006",
"storybook": "node fixStorybookPackageJson.js && storybook dev -p 6006",
"build-storybook": "storybook build",
"serve-storybook": "npx http-server ./storybook-static",
"test": "vitest"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@nuxt/devtools": "^1.0.6",
"@nuxt/image": "^1.5.0",
"@nuxt/test-utils": "^3.12.1",
"@nuxtjs/i18n": "^8.3.0",
"@pinia/nuxt": "^0.5.1",
"@pinia/testing": "^0.1.2",
"@storybook/addon-a11y": "^7.6.13",
"@storybook/addon-actions": "^7.6.13",
"@storybook/addon-essentials": "^7.6.13",
"@storybook/addon-interactions": "^7.6.13",
"@storybook/addon-links": "^7.6.13",
"@storybook/testing-library": "^0.2.2",
"@storybook/vue3": "^7.6.13",
"@storybook/vue3-vite": "^7.6.13",
"@types/fs-extra": "^11.0.4",
"@vue/test-utils": "^2.4.5",
"@vueuse/core": "^10.9.0",
"@vueuse/head": "^2.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^4.0.1",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.25.0",
"eslint-plugin-vue-test-utils": "^1.0.1",
"happy-dom": "^14.7.1",
"nuxt": "^3.12.1",
"nuxt-icon": "^0.6.10",
"nuxt-security": "^1.3.0",
"pinia": "^2.1.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.74.1",
"storybook": "^7.6.13",
"storybook-addon-nuxt": "^1.3.3",
"storybook-i18n": "^2.0.13",
"vite-plugin-vsharp": "^1.8.1",
"vitest": "^1.5.0",
"vitest-environment-nuxt": "^1.0.0",
"vue-eslint-parser": "^9.3.2",
"vue-loader": "^17.4.2"
},
"dependencies": {
"@pinia-plugin-persistedstate/nuxt": "^1.1.2",
"@vueuse/components": "^10.8.0",
"@vueuse/integrations": "^10.7.1",
"babel-loader": "^9.1.3",
"focus-trap": "^7.5.4",
"focus-trap-vue": "^4.0.3",
"fs-extra": "^11.2.0",
"modern-normalize": "^2.0.0",
"qrcode": "^1.5.3",
"vue-router": "^4.2.5"
}
}