-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.82 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
{
"name": "zitronenstrasse",
"description": "Zitronenstrasse | Romantic spots in Berlin.",
"version": "22.0.1",
"author": "Valerio Sillari <hello@zitronenstrasse.com>",
"license": "GPL-3.0",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier . --check",
"lintfix": "eslint . --fix && prettier --write --list-different .",
"type-check": "vue-tsc --noEmit",
"deploy-build": "npm run lint && npm run build",
"deploy-generate": "npm run lint && npm run generate"
},
"dependencies": {
"@contentful/rich-text-html-renderer": "^16.6.6",
"@contentful/rich-text-types": "^17.0.0",
"@nuxt/image": "^1.8.1",
"@nuxtjs/apollo": "^5.0.0-alpha.14",
"@nuxtjs/google-fonts": "^3.2.0",
"@pinia/nuxt": "^0.5.1",
"@types/google.maps": "^3.58.1",
"hover.css": "^2.3.2",
"nuxt": "^3.12.2",
"nuxt-gtag": "^3.0.1",
"pinia": "^2.1.7",
"vue": "^3.4.29",
"vue-router": "^4.3.3",
"vue3-google-map": "^0.21.0"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@nuxt/eslint": "^0.3.13",
"bootstrap": "^5.3.3",
"breakpoint-sass": "^3.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"sass": "1.77.6",
"typescript": "^5.6.3",
"vue-tsc": "^2.1.10"
}
}