-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.94 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
{
"name": "swiss-tchoukball-website",
"version": "5.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prettier": "prettier --check .",
"format": "prettier --write .",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:style": "stylelint \"**/*.{css,vue}\" --ignore-path .gitignore",
"lint:style:fix": "npm run lint:style -- --fix",
"lint": "npm run lint:js && npm run lint:style",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js,vue}": "npm run lint:js --",
"*.{css,vue}": "npm run lint:style --",
"*": "npm run prettier --"
},
"dependencies": {
"@directus/sdk": "15.1.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@hcaptcha/vue3-hcaptcha": "^1.3.0",
"@pinia/nuxt": "^0.5.2",
"@vueuse/components": "^10.11.0",
"date-fns": "^3.6.0",
"flickr-sdk": "^6.3.0",
"html-entities": "^2.5.2",
"linkify-string": "^4.1.3",
"linkifyjs": "^4.1.3",
"nuxt": "^3.12.4",
"nuxt-mail": "^5.0.1",
"pinia": "^2.2.0",
"postcss-custom-media": "^10.0.8",
"radix-vue": "^1.9.2",
"slugify": "^1.6.6",
"swiper": "^11.1.9",
"vue": "^3.4.35",
"vue-matomo": "^4.2.0",
"vue-router": "^4.4.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nuxt/eslint": "^0.4.0",
"@nuxtjs/i18n": "^8.3.3",
"@nuxtjs/stylelint-module": "^5.2.0",
"@vueuse/core": "^10.11.0",
"@vueuse/nuxt": "^10.11.0",
"esbuild": "^0.24.0",
"husky": "^9.1.2",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"stylelint": "^16.8.1",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1"
}
}