-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (92 loc) · 2.68 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
{
"name": "vite-boot",
"version": "0.0.1",
"description": "Vite starter template with TailwindCSS",
"private": true,
"packageManager": "pnpm@7.9.0",
"main": "src/main.ts",
"keywords": [
"viteBoot",
"vite-boot",
"vite",
"tailwindcss",
"fast",
"boot"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"lint": "eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",
"prettier": "prettier --write .",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@vueuse/core": "^8.9.4",
"ant-design-vue": "^3.2.12",
"daisyui": "^2.38.1",
"nprogress": "^0.2.0",
"pinia": "^2.0.18",
"sass": "^1.54.4",
"theme-change": "^2.2.0",
"vue": "^3.2.37",
"vue-router": "^4.1.3",
"wnumb": "^1.2.0"
},
"devDependencies": {
"@apollo/client": "^3.6.9",
"@babel/core": "^7.19.1",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@rollup/plugin-graphql": "^2.0.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-vite": "^0.2.3",
"@storybook/testing-library": "^0.0.13",
"@storybook/vue3": "^6.5.12",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.4",
"@types/lodash": "^4.14.185",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/apollo-composable": "4.0.0-alpha.19",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-vue": "^8.7.1",
"fuse.js": "^6.6.2",
"graphql": "16.6.0",
"graphql-tag": "^2.12.6",
"husky": "^7.0.4",
"lint-staged": "^12.5.0",
"lodash": "^4.17.21",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwind-scrollbar": "^2.0.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4",
"unplugin-auto-import": "^0.11.2",
"unplugin-vue-components": "^0.22.4",
"vite": "^4.2.0",
"vite-tsconfig-paths": "^3.5.1",
"vue-apollo": "^3.1.0",
"vue-loader": "^16.8.3",
"vue-tsc": "^0.29.8"
},
"lint-staged": {
"*.{ts,tsx,vue,js,jsx}": "eslint --cache --fix"
}
}