-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.61 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
56
57
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,vue}": "eslint --cache",
"*.{css,scss,sass,html,vue}": "stylelint",
"*.**": "prettier --check --ignore-unknown"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@rushstack/eslint-patch": "^1.2.0",
"@types/lodash": "^4.14.192",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vueuse/core": "^9.13.0",
"@vueuse/nuxt": "^9.13.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"nuxt": "^3.4.1",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.4",
"stylelint": "^15.2.0",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^30.0.1",
"tailwindcss": "^3.2.7",
"typescript": "^5.5.4"
},
"pnpm": {
"overrides": {
"@typescript-eslint/parser": "^6.21.0"
}
},
"dependencies": {
"@tanstack/vue-query": "^5.92.10",
"@tanstack/vue-virtual": "^3.13.23",
"@vercel/analytics": "^1.0.2",
"lodash": "^4.17.21",
"vue3-popper": "^1.5.0"
}
}