-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
116 lines (116 loc) · 3.4 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "morpheme-monorepo",
"version": "0.2.2",
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release": "standard-version",
"build-storybook": "storybook build",
"build": "storybook build",
"storybook": "storybook dev -p 6006",
"sb": "npm run storybook",
"dev": "run-p storybook docs:dev dev:playground",
"dev:playground": "npx nuxi dev packages/nuxt/playground",
"build:playground": "lerna run build --scope @morpheme/playground --stream",
"deploy:ui": "firebase deploy --only hosting:ui",
"deploy:playground": "firebase deploy --only hosting:playground",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint --ext .ts,.tsx,.js,.jsx,.vue packages",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"dependencies": {
"@headlessui/vue": "^1.7.22",
"@vueuse/core": "^10.11.0",
"floating-vue": "^2.0.0-beta.20",
"pagino": "^1.4.2",
"vee-validate": "^4.13.1",
"vue": "^3.4.31",
"vue-router": "^4.4.0",
"vuex": "^4.1.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@headlessui-float/vue": "^0.11.2",
"@iconify-json/heroicons-solid": "^1.1.1",
"@stackblitz/sdk": "^1.9.0",
"@storybook/addon-actions": "^8.1.1",
"@storybook/addon-docs": "^8.1.1",
"@storybook/addon-essentials": "^8.1.1",
"@storybook/addon-links": "^8.1.1",
"@storybook/addon-mdx-gfm": "^8.1.1",
"@storybook/vue3": "^8.1.1",
"@storybook/vue3-vite": "^8.1.1",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.13",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@vitejs/plugin-vue": "^5.0.5",
"@vitest/coverage-c8": "^0.31.1",
"@vitest/ui": "^0.31.1",
"@vue/compiler-sfc": "^3.3.4",
"@vue/test-utils": "^2.3.2",
"autoprefixer": "^10.4.4",
"conventional-changelog-cli": "^2.2.2",
"eslint": ">=5.16.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.14.1",
"happy-dom": "^9.19.2",
"husky": "^8.0.1",
"jsdom": "^21.1.1",
"lerna": "^6.5.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.57.1",
"standard-version": "^9.3.2",
"storybook": "^8.1.1",
"storybook-vue3-router": "^5.0.0",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.0",
"vite": "^4.3.8",
"vitepress": "^1.0.0-beta.20",
"vitest": "^0.31.1",
"vitest-sonar-reporter": "^0.3.4",
"vue-gtag": "^2.0.1",
"vue-tsc": "^2.0.24",
"@morphemeicons/vue": "^0.2.0"
},
"main": "index.ts",
"module": "index.ts",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"public",
"src",
"index.ts",
"preset.js"
],
"workspaces": [
"packages/*"
],
"private": true,
"lint-staged": {
"*.{js,jsx,ts,tsx,html,css,vue}": "npm run lint",
"*.{js,jsx,ts,tsx,md,html,css,vue}": "prettier --write"
},
"pnpm": {
"overrides": {
"consola": "3.0.1"
}
},
"overrides": {
"consola": "3.0.1"
},
"resolutions": {
"consola": "^3.0.0"
}
}