personal-site/package.json

39 lines
853 B
JSON
Raw Normal View History

2022-11-22 03:42:53 +00:00
{
2023-11-01 18:58:34 +00:00
"name": "nuxt-app",
"type": "module",
2022-11-22 03:42:53 +00:00
"private": true,
2023-11-01 18:58:34 +00:00
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
2022-11-22 03:42:53 +00:00
"dependencies": {
2024-01-31 00:10:56 +00:00
"@nuxt/content": "^2.11.0",
"@nuxt/image": "^1.3.0",
2024-01-31 00:10:56 +00:00
"nuxt-icon": "^0.6.8",
"nuxt-lodash": "^2.5.3",
"sass": "^1.70.0"
2022-11-22 03:42:53 +00:00
},
"devDependencies": {
2024-01-31 00:10:56 +00:00
"@antfu/eslint-config": "^2.6.3",
"eslint": "^8.56.0",
2024-01-30 18:53:06 +00:00
"lint-staged": "^15.2.0",
2024-01-31 00:10:56 +00:00
"nuxt": "^3.9.3",
2023-11-01 18:58:34 +00:00
"simple-git-hooks": "^2.9.0",
2024-01-31 00:10:56 +00:00
"typescript": "^5.3.3",
"vue": "^3.4.14",
2023-11-01 18:58:34 +00:00
"vue-router": "^4.2.5",
2024-01-31 00:10:56 +00:00
"vue-tsc": "^1.8.27"
2022-11-22 03:42:53 +00:00
},
2023-11-01 18:58:34 +00:00
"simple-git-hooks": {
2024-01-30 18:53:06 +00:00
"pre-commit": "bunx lint-staged"
2022-11-22 03:42:53 +00:00
},
2023-11-01 18:58:34 +00:00
"lint-staged": {
2024-01-31 00:10:56 +00:00
"*": "bunx eslint --fix"
2022-11-22 03:42:53 +00:00
}
}