-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.89 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.89 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
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"lint:js": "eslint --ext \".js,.vue,.ts\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:style && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix && yarn lint:style --fix"
},
"devDependencies": {
"@mdi/font": "^7.2.96",
"@nuxt/devtools": "^0.8.3",
"@nuxtjs/critters": "^0.5.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@tiptap/core": "^2.1.10",
"@tiptap/extension-color": "^2.1.10",
"@tiptap/extension-highlight": "^2.1.10",
"@tiptap/extension-image": "^2.1.10",
"@tiptap/extension-link": "^2.1.10",
"@tiptap/extension-task-item": "^2.1.10",
"@tiptap/extension-task-list": "^2.1.10",
"@tiptap/extension-text-align": "^2.1.10",
"@tiptap/extension-text-style": "^2.1.10",
"@tiptap/extension-typography": "^2.1.10",
"@tiptap/extension-underline": "^2.1.10",
"@tiptap/pm": "^2.1.10",
"@tiptap/starter-kit": "^2.1.10",
"@tiptap/vue-3": "^2.1.10",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"gsap": "^3.12.2",
"nodemailer": "^6.9.5",
"nuxt": "^3.7.3",
"postcss-html": "^1.5.0",
"prettier": "^3.0.3",
"sass": "^1.67.0",
"stylelint": "^15.10.3",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard-scss": "^11.0.0",
"typescript": "^5.2.2",
"vite-plugin-vuetify": "^1.0.2",
"vue3-google-map": "^0.17.1",
"vuetify": "^3.3.16"
},
"dependencies": {
"@nuxt/image": "^1.0.0-rc.2"
}
}