-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.86 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
78
79
{
"private": true,
"scripts": {
"start-pm2": "pm2 start ecosystem.json --only Nuxt3tailwindStaging",
"dev": "cross-env NODE_ENV=development nuxt dev --port 3004",
"analyze": "npx nuxi analyze",
"build-dev": "cross-env NODE_ENV=development nuxt build",
"start-dev": "cross-env NODE_ENV=development nuxt preview",
"build-staging": "cross-env NODE_ENV=staging nuxt build",
"// start-staging": "cross-env NODE_ENV=staging nuxt preview",
"start-staging": "cross-env NODE_ENV=staging PORT=3004 node .output/server/index.mjs",
"build-prod": "cross-env NODE_ENV=production nuxt build",
"start-prod": "cross-env NODE_ENV=production nuxt preview",
"generate": "nuxt generate",
"lint:ts": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"lint:ts:fix": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore . --fix",
"lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore",
"lint:style:fix": "stylelint **/*.{vue,css} --ignore-path .gitignore --fix",
"lint": "yarn lint:ts && yarn lint:style",
"lint:fix": "yarn lint:ts:fix && yarn lint:style:fix",
"postinstall": "patch-package && husky install && nuxt prepare",
"start": "nuxt start",
"deploy": "push-dir --dir=dist --branch=gh-pages --cleanup"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@commitlint/config-conventional": "^17.4.0",
"@headlessui/vue": "^1.7.9",
"@nuxt/content": "^2.3.0",
"@nuxtjs/color-mode": "^3.2.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/google-fonts": "^3.0.0-0",
"@nuxtjs/i18n": "^8.0.0-beta.9",
"@nuxtjs/tailwindcss": "^6.2.0",
"@pinia/nuxt": "^0.4.6",
"@prettier/plugin-pug": "^2.3.0",
"@rive-app/canvas": "^1.0.97",
"@tailwindcss/forms": "^0.5.3",
"@volar/vue-language-plugin-pug": "^1.0.22",
"@vuelidate/core": "^2.0.0",
"@vuelidate/validators": "^2.0.0",
"@vueuse/core": "^9.10.0",
"@vueuse/nuxt": "^9.10.0",
"commitlint": "^17.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"nuxt": "^3.1.2",
"nuxt-icon": "^0.1.8",
"nuxt-simple-sitemap": "^0.5.8",
"nuxt-swiper": "^1.1.1",
"patch-package": "^6.5.1",
"postcss-custom-properties": "^13.0.0",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"pug": "^3.0.2",
"sass": "^1.57.1",
"vite-plugin-top-level-await": "^1.2.2",
"vite-plugin-wasm": "^3.1.1",
"vite-svg-loader": "^4.0.0"
},
"dependencies": {
"daisyui": "^2.50.0",
"vue-window-size": "^2.0.0"
}
}