-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.06 KB
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
{
"name": "zitronenstrasse",
"description": "Zitronenstrasse | Romantic spots in Berlin.",
"version": "23.0.1",
"author": "Valerio Sillari",
"license": "GPL-3.0",
"volta": {
"node": "20.19.6",
"npm": "10.9.4"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"types:check": "vue-tsc --noEmit",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"prettier:check": "prettier . --check",
"prettier:fix": "prettier --write --list-different .",
"check-all": "bun types:check && bun lint:check && bun prettier:check",
"fix-all": "bun lint:fix && bun prettier:fix",
"deploy-build": "bun check-all && bun run build"
},
"dependencies": {
"@contentful/rich-text-html-renderer": "^17.0.0",
"@contentful/rich-text-types": "^17.0.0",
"@nuxt/image": "^1.9.0",
"@nuxtjs/apollo": "^5.0.0-alpha.16",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/sitemap": "^7.2.9",
"@pinia/nuxt": "^0.5.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@vueuse/core": "^13.0.0",
"@vueuse/nuxt": "^13.0.0",
"nuxt": "^4.0.0",
"nuxt-gtag": "^3.0.2",
"pinia": "^2.1.7",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue3-google-map": "^0.21.1"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@nuxt/eslint": "^1.2.0",
"@types/google.maps": "^3.58.1",
"@types/node": "^22.13.11",
"bootstrap": "^5.3.7",
"breakpoint-sass": "^3.0.0",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.3.2",
"sass": "1.77.6",
"typescript": "^5.9.3",
"vue-tsc": "^3.2.2"
}
}