This repository has been archived by the owner on Jun 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.46 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "daktadeo-nuxt",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "nuxt build",
"build:do": "rm -r _static 2>/dev/null; nuxt build && nuxt export && mv dist _static && (rm _static/README.md || true)",
"dev": "nuxt",
"generate": "nuxt generate",
"lint": "yarn lint:js && yarn lint:style",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore",
"start": "nuxt start",
"start:do": "node sammy.js; serve -s _static -l tcp://0.0.0.0:${PORT:-8080} -n",
"test": "jest",
"format": "prettier --write \"{,!(node_modules)/**/}*.{css,js,vue}\"",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{css,vue}": "stylelint",
"*.{js,vue}": "eslint"
},
"dependencies": {
"@aceforth/nuxt-optimized-images": "^1.3.0",
"@babel/core": "^7.0.0-0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nuxt/content": "^1.9.0",
"@nuxt/image": "^0.4.11",
"@nuxtjs/axios": "^5.12.2",
"@nuxtjs/browserconfig": "^0.0.13",
"@nuxtjs/color-mode": "^2.0.1",
"@nuxtjs/device": "^1.2.7",
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/google-fonts": "^1.2.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/robots": "^2.4.2",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/svg": "^0.1.12",
"@nuxtjs/tailwindcss": "^3.1.0",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"@vue/test-utils": "^1.1.0",
"autoprefixer": "^9",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.0",
"clipboard": "^2.0.6",
"consola": "^2.15.3",
"core-js": "^3.6.5",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.14.0",
"eslint-webpack-plugin": "^2.4.1",
"fibers": "^5.0.0",
"husky": "^7.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.1",
"imagemin-svgo": "^8.0.0",
"jest": "^26.5.0",
"lint-staged": "^10.4.0",
"lodash": "^4.17.20",
"marked": "^1.2.5",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28",
"nuxt": "^2.15.7",
"nuxt-i18n": "^6.16.0",
"prettier": "^2.3.2",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1",
"prism-themes": "^1.5.0",
"sass": "^1.36.0",
"sass-loader": "10",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"tailwind-css-variables": "^2.0.3",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"theme-colors": "^0.0.5",
"vue": "^2.6.14",
"vue-agile": "^1.1.3",
"vue-jest": "^3.0.4",
"vue-scrollactive": "^0.9.3",
"vue-template-compiler": "^2.x",
"webpack": "^4.46.0"
}
}