-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.53 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
{
"name": "intro-storybook-vue-template",
"version": "0.2.0",
"private": true,
"type": "module",
"description": "Starter template to get up and running quickly with Vue and Storybook",
"author": "Chromatic <https://chromatic.com/>",
"repository": {
"type": "git",
"url": "https://github.com/chromaui/intro-storybook-vue-template"
},
"bugs": {
"url": "https://github.com/chromaui/intro-storybook-vue-template/issues"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"init-msw": "msw init public/"
},
"dependencies": {
"vue": "^3.4.21"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.8.0",
"@storybook/addon-essentials": "^8.3.2",
"@storybook/addon-interactions": "^8.3.2",
"@storybook/addon-links": "^8.3.2",
"@storybook/blocks": "^8.3.2",
"@storybook/test": "^8.3.2",
"@storybook/vue3": "^8.3.2",
"@storybook/vue3-vite": "^8.3.2",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"eslint": "^8.57.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.23.0",
"msw": "^2.3.0",
"msw-storybook-addon": "^2.0.3",
"prettier": "^3.2.5",
"storybook": "^8.3.2",
"vite": "^5.2.8"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}