-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.8 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
{
"name": "tomacheese.com",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore",
"lint": "yarn lint:js && yarn lint:style",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix && yarn lint:style --fix"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxt/typescript-runtime": "3.0.2",
"@nuxtjs/axios": "5.13.6",
"@nuxtjs/google-analytics": "2.4.0",
"@types/marked": "5.0.2",
"@types/xml2js": "0.4.14",
"cheerio": "1.0.0-rc.10",
"core-js": "3.39.0",
"highlight.js": "11.10.0",
"nuxt": "2.15.8",
"nuxt-webfontloader": "1.1.0",
"vue-scrollto": "2.20.0"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@nuxt/types": "2.18.1",
"@nuxt/typescript-build": "3.0.2",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"@nuxtjs/eslint-module": "4.1.0",
"@nuxtjs/stylelint-module": "5.1.0",
"@nuxtjs/vuetify": "1.12.3",
"@babel/eslint-parser": "7.25.9",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-nuxt": "4.0.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-vue": "9.31.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"postcss-html": "1.7.0",
"prettier": "3.4.1",
"stylelint": "15.11.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-standard": "34.0.0"
}
}