-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 984 Bytes
/
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
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"lint-staged": {
"*.{ts,vue}": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/markdown-it": "^12.2.3",
"@vueuse/core": "^9.6.0",
"@vueuse/nuxt": "^9.6.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.28.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"nuxt": "3.3.1",
"postcss-html": "^1.5.0",
"prettier": "^2.8.0",
"sass": "^1.56.1",
"sass-loader": "^13.2.0"
},
"dependencies": {
"@nuxt/content": "^2.5.2",
"unstorage": "^1.0.1",
"vue-markdown-render": "^2.0.1",
"vue3-simple-icons": "^7.18.0"
}
}