-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.36 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
{
"name": "thapl",
"private": true,
"version": "2.1.15",
"engines": {
"node": ">=16.15.0"
},
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"start": "nuxt preview",
"generate": "nuxt generate",
"postinstall": "nuxt prepare",
"lint:nuxt": "nuxt typecheck",
"lint:js": "eslint . -c .eslintrc.js --ext \".js,.ts,.vue\"",
"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",
"deploy": "nuxt generate && surge -d thapl.surge.sh .output/public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache",
"*.{css,scss,sass,html,vue}": "stylelint",
"*.{vue,js,ts}": "prettier --check --ignore-unknown"
},
"dependencies": {
"@nuxt/image-edge": "^1.0.0-rc.1-28143901.afe4120",
"@nuxtjs/google-fonts": "^3.0.1",
"@nuxtjs/i18n": "^8.0.0-rc.5",
"@pinia-plugin-persistedstate/nuxt": "^1.1.1",
"@pinia/nuxt": "^0.4.11",
"@vee-validate/i18n": "^4.10.6",
"@vuepic/vue-datepicker": "^5.3.0",
"@vueuse/core": "^10.6.1",
"dayjs": "^1.11.9",
"floating-vue": "^2.0.0-beta.24",
"lodash": "^4.17.21",
"maska": "1.5.1",
"mitt": "^3.0.1",
"nanoid": "^4.0.2",
"nuxt": "^3.6.2",
"nuxt-icons": "^3.2.1",
"nuxt-proxy": "^0.4.1",
"swiper": "^9.4.1",
"vee-validate": "^4.10.6",
"vue-gtag-next": "^1.14.0",
"vue-select": "^4.0.0-beta.6",
"vue-toastification": "^2.0.0-rc.5",
"vue-yandex-maps": "^1.0.4",
"vue3-lazy-hydration": "^1.2.1"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.15.1",
"husky": "4",
"lint-staged": "^13.2.3",
"postcss-html": "^1.5.0",
"prettier": "^2.8.8",
"sass": "^1.63.6",
"stylelint": "^15.10.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^34.0.0",
"typescript": "^5.1.6",
"vite-plugin-eslint": "^1.8.1"
}
}