This repository has been archived by the owner on Jun 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.87 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
93
94
95
96
{
"name": "developer.vuestorefront.io",
"contributors": [
{
"email": "[email protected]",
"name": "Sergii Kirianov",
"url": "https://twitter.com/SergiiKirianov"
}
],
"engines": {
"node": ">=16.19"
},
"scripts": {
"build": "nuxi build",
"build:analyze": "NUXT_ANALYZE=true nuxi build",
"dev": "nuxi dev",
"lint": "eslint . --ext .js,.ts,.vue --ignore-path .eslintignore --fix",
"lint:content": "markdownlint ./content && case-police 'content**/*.md'",
"lint:content:fix": "markdownlint ./content --fix && case-police 'content**/*.md' --fix",
"lint:fix": "eslint . --ext .js,.ts,.vue --ignore-path .eslintignore --fix",
"posttest": "npm run lint",
"precommit": "lint-staged",
"prepare": "node ./scripts/prepare.js",
"prepublishOnly": "npm run build",
"start": "node .output/server/index.mjs",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@headlessui/vue": "^1.7.4",
"@iconify/vue": "^4.0.0",
"@kyvg/vue3-notification": "^2.6.1",
"@pinia/nuxt": "^0.4.4",
"@popperjs/core": "^2.11.6",
"@sendgrid/mail": "^7.7.0",
"@supabase/supabase-js": "^2.1.0",
"@vueuse/nuxt": "^9.5.0",
"clipboard": "^2.0.11",
"ejs": "^3.1.8",
"joi": "^17.7.0",
"nuxt-icon": "^0.1.7",
"ohmyfetch": "^0.4.21",
"pinia": "^2.0.24",
"regexparam": "^2.0.1",
"svg-to-pdfkit": "^0.1.8",
"transform-object-keys": "^1.0.7",
"ufo": "^1.0.0",
"vue-github-button": "^3.1.0",
"vue-i18n": "^9.2.2"
},
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "^2.0.0",
"@intlify/nuxt3": "^0.2.4",
"@nuxt/content": "^2.2.2",
"@nuxt/test-utils": "3.0.0",
"@nuxtjs/tailwindcss": "^6.1.3",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.8",
"@types/ejs": "^3.1.1",
"@types/pdfkit": "^0.12.8",
"@types/prettier": "^2.7.1",
"@vitest/ui": "^0.25.2",
"@vue-storefront/eslint-config": "^1.1.2",
"@vue-storefront/eslint-config-typescript": "^1.1.2",
"@vue-storefront/nuxt-gtag": "^1.0.7",
"@vue/test-utils": "^2.2.3",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.27.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"nuxt": "^3.0.0",
"postcss-custom-properties": "^13.0.0",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"vitest": "^0.25.2"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
},
"volta": {
"node": "16.19.0"
}
}