-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "lsp-log-parser",
"version": "1.0.0",
"description": "Parser for LSP server logs",
"author": "Rafał Chłodnicki",
"private": true,
"scripts": {
"prepare": "nuxi prepare",
"dev": "nuxi dev",
"build": "nuxi build",
"start": "nuxi preview",
"generate": "nuxi generate",
"lint": "yarn jslint && yarn csslint",
"jslint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore .",
"csslint": "stylelint '**/*.scss' '**/*.vue'",
"typecheck": "npx tsc"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --ext .js,.ts,.vue --ignore-path .gitignore",
"*.{scss,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn typecheck"
}
},
"dependencies": {
"@vueuse/core": "^11.0.3",
"@vueuse/nuxt": "^11.0.3",
"nuxt": "^3.13.0",
"vue-json-pretty": "^2.4.0",
"vuetify": "^3.7.1"
},
"devDependencies": {
"@mdi/font": "^7.4.47",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/stylelint-module": "^5.2.0",
"@types/node": "^20.16.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.27.0",
"eslint-plugin-vuetify": "^2.4.0",
"husky": "^4.3.8",
"lint-staged": "^15.2.9",
"postcss": "^8.4.41",
"postcss-html": "^1.7.0",
"sass": "^1.77.8",
"stylelint": "^15.11.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^32.0.0",
"typescript": "^5.5.4",
"vite-plugin-vuetify": "^2.0.4",
"vscode-languageserver-protocol": "^3.17.5"
}
}