-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.83 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
93
94
95
96
97
98
99
100
{
"name": "@storipress/builder-component",
"version": "1.4.3",
"packageManager": "yarn@4.3.0",
"repository": "git@github.com:storipress/builder-component.git",
"exports": {
".": {
"types": "./dist/entry.d.ts",
"import": "./dist/entry.mjs"
},
"./dist/style.css": {
"import": "./dist/style.css"
}
},
"main": "./dist/entry.mjs",
"types": "./dist/entry.d.ts",
"files": [
"./dist/**/*"
],
"scripts": {
"build": "vite build && unbuild",
"build:browser": "vite build --mode browser && vue-tsc --emitDeclarationOnly",
"dev": "yarn storybook",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepack": "yarn build"
},
"dependencies": {
"@apollo/client": "^3.8.3",
"@headlessui/vue": "^1.7.16",
"@stripe/stripe-js": "^3.0.0",
"@types/lodash-es": "^4.17.9",
"@vue/apollo-composable": "^4.0.0-beta.11",
"@vueuse/core": "^10.2.1",
"dayjs": "^1.11.9",
"graphql": "^16.7.1",
"graphql-tag": "^2.12.6",
"lodash-es": "^4.17.21",
"p-retry": "^6.0.0",
"tiny-invariant": "^1.3.1",
"ts-pattern": "^5.0.5",
"vee-validate": "^4.11.6",
"vue": "^3.3.4",
"vue-i18n": "^9.4.1",
"vue-router": "^4.2.4",
"yup": "^1.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "2.21.1",
"@storybook/addon-actions": "8.1.10",
"@storybook/addon-docs": "8.1.10",
"@storybook/addon-essentials": "8.1.10",
"@storybook/addon-interactions": "8.1.10",
"@storybook/addon-links": "8.1.10",
"@storybook/testing-library": "0.2.2",
"@storybook/vue3": "8.1.10",
"@storybook/vue3-vite": "8.1.10",
"@t3-oss/env-core": "0.10.1",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.7",
"@types/node": "18.19.37",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"@vitejs/plugin-vue": "5.0.5",
"@vitest/coverage-v8": "1.6.0",
"@vue/test-utils": "2.4.6",
"autoprefixer": "10.4.19",
"chromatic": "11.5.4",
"eslint": "9.5.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-storybook": "0.8.0",
"jsdom": "24.1.0",
"msw": "2.3.1",
"postcss": "8.4.38",
"prettier": "3.3.2",
"prettier-plugin-tailwindcss": "0.6.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"sass": "1.77.6",
"storybook": "8.1.10",
"tailwind-scrollbar-hide": "1.1.7",
"tailwindcss": "3.4.4",
"typescript": "5.4.5",
"unbuild": "2.0.0",
"vite": "5.3.1",
"vite-plugin-turbosnap": "1.0.3",
"vitest": "1.6.0",
"vue-eslint-parser": "9.4.3",
"vue-tsc": "2.0.21",
"zod": "3.23.8"
},
"msw": {
"workerDirectory": "public"
}
}