This repository has been archived by the owner on Mar 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
92 lines (92 loc) · 2.87 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
92
{
"name": "@shopware-ag/meteor-component-library",
"version": "3.0.0-alpha1",
"scripts": {
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "npm run eslint && npm run prettier",
"eslint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"eslint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook"
},
"main": "dist/common/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"src",
"dist"
],
"dependencies": {
"@floating-ui/dom": "^1.4.3",
"@shopware-ag/meteor-icon-kit": "^5.2.0",
"@vueuse/components": "^10.7.2",
"@vueuse/core": "^10.7.2",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"flatpickr": "4.6.3",
"inter-ui": "^3.19.3",
"lodash-es": "^4.17.21",
"vue": "3.3.8",
"vue-i18n": "^9.6.5",
"vue-smooth-reflow": "^0.1.12"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/blocks": "^7.5.3",
"@storybook/jest": "^0.2.3",
"@storybook/manager-api": "^7.5.3",
"@storybook/test": "^7.6.10",
"@storybook/test-runner": "^0.14.1",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.5.3",
"@storybook/vue3": "^7.5.3",
"@storybook/vue3-vite": "^7.5.3",
"@tsconfig/node18": "^18.2.2",
"@types/jsdom": "^21.1.3",
"@types/lodash-es": "^4.17.11",
"@types/node": "^18.18.5",
"@types/punycode": "^2.1.3",
"@vitejs/plugin-vue": "^4.4.0",
"@vitest/ui": "^1.1.3",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.2",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-vitest": "^0.3.20",
"eslint-plugin-vitest-globals": "^1.4.0",
"eslint-plugin-vue": "^9.17.0",
"flush-promises": "^1.0.2",
"http-server": "^14.1.1",
"jest-image-snapshot": "^6.4.0",
"jsdom": "^22.1.0",
"npm-run-all2": "^6.1.1",
"prettier": "3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.69.5",
"storybook": "^7.5.3",
"storybook-dark-mode": "^3.0.1",
"ts-morph": "^20.0.0",
"typescript": "~5.2.0",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.6.3",
"vite-plugin-svgstring": "^1.0.0",
"vitest": "^1.1.3",
"vue-tsc": "^1.8.22"
},
"overrides": {
"vue": "3.3.8"
}
}