-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.03 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
{
"name": "vue3",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vite preview",
"build": "vite build",
"build:development": "vite build --mode development",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"dev": "vite",
"msw": "vite --mode msw",
"storybook": "start-storybook -p 6006 -c _storybook",
"build-storybook": "build-storybook -c _storybook",
"test-storybook": "test-storybook -c _storybook"
},
"dependencies": {
"@mdi/font": "5.9.55",
"roboto-fontface": "*",
"vue": "3.2.31",
"vue-class-component": "8.0.0-rc.1",
"vue-i18n": "9.2.0-beta.30",
"vue-router": "4.0.12",
"vuetify": "3.0.0-beta.0",
"vuex": "4.0.2",
"webfontloader": "1.6.28"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@storybook/addon-a11y": "6.5.9",
"@storybook/addon-actions": "6.5.9",
"@storybook/addon-essentials": "6.5.9",
"@storybook/addon-interactions": "6.5.9",
"@storybook/addon-links": "6.5.9",
"@storybook/builder-vite": "0.1.37",
"@storybook/jest": "0.0.10",
"@storybook/test-runner": "0.3.0",
"@storybook/testing-library": "0.0.13",
"@storybook/vue3": "6.5.9",
"@types/vue-i18n": "7.0.0",
"@types/webfontloader": "1.6.34",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@vitejs/plugin-vue": "2.2.2",
"@vue/compiler-sfc": "3.2.31",
"@vue/eslint-config-airbnb": "5.3.0",
"@vue/eslint-config-typescript": "7.0.0",
"@vuetify/vite-plugin": "1.0.0-alpha.10",
"babel-loader": "8.2.3",
"eslint": "8.9.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-vue": "8.5.0",
"jest": "27.5.1",
"msw": "0.36.8",
"msw-storybook-addon": "1.6.3",
"sass": "1.49.8",
"sass-loader": "10.2.1",
"storybook-vue3-router": "2.2.1",
"typescript": "4.1.6",
"vite": "2.8.4",
"vue-cli-plugin-vuetify": "2.4.8",
"vue-loader": "16.8.3",
"vuetify-loader": "2.0.0-alpha.9"
},
"msw": {
"workerDirectory": "public"
}
}