-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.4 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
{
"private": true,
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"start": "node .output/server/index.mjs",
"generate": "nuxt generate",
"preview": "nuxt preview",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "npx husky install",
"commit": "git add . && pnpm lint:fix && git cz",
"genlog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"git:push": "npm run genlog && git push origin main",
"deploy": "npx vercel --prod"
},
"dependencies": {
"@headlessui/vue": "^1.6.7",
"@nuxtjs/i18n": "8.0.0-alpha.1",
"@nuxtjs/robots": "^3.0.0",
"@pinia/nuxt": "^0.4.1",
"@vueuse/core": "^9.1.1",
"highlight.js": "^11.6.0",
"markdown-it": "^13.0.1",
"markdown-it-prism": "^2.2.5",
"pinia": "^2.0.21",
"prism-themes": "^1.9.0",
"vee-validate": "^4.6.7",
"vue": "^3.2.37",
"vue-gtag": "^2.0.1",
"windplus": "^0.0.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@antfu/eslint-config": "^0.29.3",
"@babel/core": "^7.18.13",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@iconify/json": "^2.1.100",
"@nuxt/content": "^2.2.2",
"@nuxt/image": "^0.7.1",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/strapi": "^1.5.0",
"@nuxtjs/tailwindcss": "^6.1.3",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-vite": "^0.2.2",
"@storybook/testing-library": "^0.0.13",
"@storybook/vue3": "^6.5.10",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.8",
"@types/react": "file:stub/types__react",
"@vueuse/nuxt": "^9.1.1",
"babel-loader": "^8.2.5",
"commitizen": "^4.2.5",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog-zh": "^0.0.2",
"eslint": "8.18.0",
"husky": "^8.0.2",
"nuxt": "^3.0.0",
"nuxt-icon": "^0.1.5",
"prettier-plugin-tailwindcss": "^0.2.0",
"sitemap": "^7.1.1",
"swiper": "^8.3.2",
"tailwindcss": "^3.1.8",
"vercel": "^28.7.0",
"vue-loader": "^17.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog-zh"
}
}
}