-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.36 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
{
"name": "nuxt-blog-web",
"version": "1.0.0",
"description": "My personal website and blog, based on Nuxt",
"main": "index.js",
"repository": "https://github.com/BlogExplore/nuxt-blog-web.git",
"author": "yayxs <[email protected]>",
"license": "MIT",
"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": "eslint --max-warnings 0 --ext .ts,.vue ."
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/auth-next": "5.0.0-1621716493.b9b36c6",
"@nuxtjs/axios": "^5.13.4",
"@nuxtjs/composition-api": "^0.23.4",
"@nuxtjs/markdownit": "^2.0.0",
"@nuxtjs/proxy": "^2.1.0",
"axios": "^0.21.1",
"cookie-universal-nuxt": "^2.1.4",
"element-ui": "^2.15.1",
"highlight.js": "^10.7.2",
"markdown-it-attrs": "^4.0.0",
"markdown-it-deflist": "^2.1.0",
"markdown-it-div": "^1.1.0",
"markdown-it-highlightjs": "^3.5.0",
"markdown-it-mark": "^3.0.1",
"mavon-editor": "^2.9.1",
"nuxt": "^2.15.4",
"nuxt-property-decorator": "^2.9.1",
"vuex-module-decorators": "^1.0.1",
"xss": "^1.0.9"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@nuxt/types": "^2.15.4",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^6.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/stylelint-module": "^4.0.0",
"babel-eslint": "^10.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.9.0",
"fibers": "^5.0.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"sass": "^1.32.12",
"sass-loader": "10",
"stylelint": "^13.13.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}