-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.51 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
{
"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": {
"test": "vitest",
"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.4.5",
"@storybook/experimental-addon-test": "^8.4.5",
"@storybook/test": "^8.4.5",
"@storybook/vue3": "^8.4.5",
"@storybook/vue3-vite": "^8.4.5",
"@vitejs/plugin-vue": "^5.2.0",
"@vitest/browser": "^2.1.5",
"@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.4",
"playwright": "^1.49.0",
"prettier": "^3.2.5",
"storybook": "^8.4.5",
"vite": "^5.2.8",
"vitest": "^2.1.5"
}
}