-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
{
"name": "kami",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix",
"format": "prettier . --write",
"prepare": "husky install && husky add .husky/pre-commit \"npm run lint \"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"vue": "^3.2.37",
"vue-router": "4",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@storybook/addon-essentials": "^7.0.5",
"@storybook/addon-interactions": "^7.0.5",
"@storybook/addon-links": "^7.0.5",
"@storybook/blocks": "^7.0.5",
"@storybook/testing-library": "^0.0.14-next.2",
"@storybook/vue3": "^7.0.5",
"@storybook/vue3-vite": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"babel-loader": "^8.2.3",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.11",
"eslint-plugin-vue": "^9.11.0",
"husky": "8.0.3",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.62.0",
"storybook": "^7.0.5",
"typescript": "^4.9.3",
"vite": "^4.2.1",
"vite-plugin-eslint": "1.8.1",
"vue-loader": "^17.0.1",
"vue-tsc": "^1.2.0"
}
}