-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.77 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
{
"version": "1.1.3",
"private": true,
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"start": "node .output/server/index.mjs",
"lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .ts,.js,.vue --ignore-path .gitignore .",
"stylelint": "stylelint **/*.{vue,css,scss} --ignore-path .gitignore",
"stylelintfix": "stylelint --fix **/*.{vue,css,scss} --ignore-path .gitignore",
"format": "prettier -c .",
"formatfix": "prettier --write -c .",
"release": "standard-version"
},
"lint-staged": {
"*.{js,ts,vue,json}": "prettier -c",
"*.{js,ts,vue}": "eslint",
"*.{css,scss,vue}": "stylelint"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@fortawesome/fontawesome-free": "^6.1.0",
"@nuxtjs/eslint-config-typescript": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"@vuetify/vite-plugin": "^1.0.0-alpha.10",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^8.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"nuxt3": "latest",
"prettier": "^2.6.0",
"sass": "^1.49.11",
"sass-loader": "^12.6.0",
"standard-version": "^9.3.2",
"stylelint": "^14.6.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-scss": "^4.2.0",
"typescript": "^4.6.2",
"vue-gtag-next": "^1.14.0"
},
"dependencies": {
"microcms-js-sdk": "^2.0.0",
"vuetify": "3.0.0-beta.0"
}
}