-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.21 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky install",
"lint:js": "eslint . --ext .js,.jsx,.ts,.tsx,.vue --fix",
"lint": "eslint .",
"lint-fix": "eslint --fix",
"format": "prettier --write .",
"precommit": "lint-staged"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxtjs/google-fonts": "^3.1.3",
"@nuxtjs/tailwindcss": "^6.8.1",
"@storefront-ui/vue": "^2.6.0",
"@types/validator": "^13.11.9",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"autoprefixer": "^10.4.16",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"nuxt": "^3.7.4",
"nuxt-icon": "^0.6.8",
"postcss": "^8.4.31",
"prettier": "3.0.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.2.2",
"vue": "^3.3.4",
"vue-router": "^4.2.5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{css,scss,json,yaml,yml,js,jsx,ts,tsx,vue}": [
"eslint --fix",
"prettier --write",
"git add -A ."
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".husky/git/commitizen.js"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"overrides": {
"vue": "latest"
},
"dependencies": {
"@nuxt/image": "^1.0.0",
"@pinia/nuxt": "^0.4.11",
"@vueuse/core": "^10.7.2",
"@vueuse/nuxt": "^10.7.2",
"axios": "^1.6.7",
"flowbite": "^2.3.0",
"mande": "^2.0.8",
"pinia": "^2.1.6",
"validator": "^13.11.0",
"vue-toast-notification": "^3"
}
}