forked from pkp/ui-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.02 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
{
"name": "ui-library",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint ./src --ext .vue,.js,.cjs --fix --ignore-path .gitignore",
"format": "prettier --write ./src",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"storybookWithProxy": "cross-env STORYBOOK_APP_DOMAIN_URL=http://localhost:7001 storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token chpt_d560551f1e4c0c7",
"test": "vitest"
},
"dependencies": {
"@headlessui/vue": "^1.7.16",
"@highlightjs/vue-plugin": "^2.1.0",
"@lk77/vue3-color": "^3.0.6",
"@storybook/test": "^8.0.5",
"@tinymce/tinymce-vue": "^5.1.1",
"@vue-a11y/announcer": "^3.1.5",
"@vueuse/core": "^10.5.0",
"chart.js": "^4.4.3",
"clone-deep": "^4.0.1",
"debounce": "^1.2.0",
"dropzone-vue3": "^1.0.2",
"element-resize-event": "^3.0.6",
"floating-vue": "^2.0.0-beta.24",
"highlight.js": "^11.9.0",
"html-entities": "^1.3.1",
"marked": "^4.2.4",
"moment": "^2.29.4",
"ofetch": "^1.3.3",
"pinia": "^2.1.7",
"primevue": "^4.0.5",
"tiny-emitter": "^2.1.0",
"tinymce": "^5.10.7",
"uuid": "^9.0.0",
"vue": "^3.3.8",
"vue-chartjs": "^5.2.0",
"vue-draggable-plus": "^0.2.4",
"vue-router": "^4.2.4",
"vue-scrollto": "^2.20.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-interactions": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/addon-mdx-gfm": "^8.0.5",
"@storybook/addon-themes": "^8.0.5",
"@storybook/blocks": "^8.0.5",
"@storybook/vue3": "^8.0.5",
"@storybook/vue3-vite": "^8.0.5",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/eslint-config-prettier": "^8.0.0",
"autoprefixer": "^10.4.14",
"chromatic": "^9.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.17.0",
"http-proxy-middleware": "^3.0.0",
"husky": "^8.0.3",
"less": "^4.2.0",
"lint-staged": "^14.0.1",
"msw": "^2.0.11",
"msw-storybook-addon": "^2.0.0-beta.1",
"postcss": "^8.4.27",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.11",
"storybook": "^8.0.5",
"storybook-mock-date-decorator": "^1.0.2",
"tailwindcss": "3.4",
"vite": "^5.0.12",
"vitest": "^1.0.4"
},
"postcss": {
"plugins": {
"autoprefixer": {},
"tailwindcss": {}
}
},
"prettier": {
"$schema": "https://json.schemastore.org/prettierrc",
"bracketSpacing": false,
"singleQuote": true,
"useTabs": true,
"htmlWhitespaceSensitivity": "ignore",
"proseWrap": "never",
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix "
],
"src/**/*.{js,vue,mdx}": [
"prettier --write"
]
},
"msw": {
"workerDirectory": ".storybook/public"
}
}