66 lines
2 KiB
JSON
66 lines
2 KiB
JSON
{
|
|
"name": "@ayco/personal-website",
|
|
"type": "module",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"astro": "astro",
|
|
"dev": "astro telemetry disable && astro dev",
|
|
"start": "astro telemetry disable && astro dev",
|
|
"build": "astro telemetry disable && astro build",
|
|
"preview": "astro preview",
|
|
"lint": "eslint . --config eslint.config.mjs --cache",
|
|
"format": "prettier . --write",
|
|
"check": "npm run format && npm run lint",
|
|
"deploy": "eval $(grep '^HOST' .env) && scp -r dist ayo@$HOST:~/ayco.io-flask",
|
|
"build:preview": "npm run build && astro preview",
|
|
"build:deploy": "npm run build && npm run deploy",
|
|
"copy:dist": "npm run build && cp -R dist ../ayco.io-flask/",
|
|
"prepare": "husky",
|
|
"prep:now": "npx jiti ./commands/prep-now.js"
|
|
},
|
|
"devDependencies": {
|
|
"@astro-reactive/form": "^0.10.1",
|
|
"@astro-reactive/validator": "^0.5.1",
|
|
"@astrojs/sitemap": "^3.4.1",
|
|
"@ayco/astro-sw": "^0.8.14",
|
|
"@eslint/compat": "^1.3.1",
|
|
"@eslint/js": "^9.30.1",
|
|
"@iconify-json/mdi": "^1.2.3",
|
|
"@iconify-json/simple-icons": "^1.2.42",
|
|
"@iconify-json/tabler": "^1.2.19",
|
|
"@typescript-eslint/parser": "^8.36.0",
|
|
"astro": "^5.11.0",
|
|
"astro-eslint-parser": "^1.2.2",
|
|
"astro-github-stats": "^0.8.0",
|
|
"astro-icon": "^1.1.5",
|
|
"consola": "^3.4.2",
|
|
"eslint": "^9.30.1",
|
|
"eslint-plugin-astro": "^1.3.1",
|
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
"globals": "^16.3.0",
|
|
"husky": "^9.1.7",
|
|
"jiti": "^2.4.2",
|
|
"lint-staged": "^16.1.2",
|
|
"pathe": "^2.0.3",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-astro": "^0.14.1",
|
|
"rehype-stringify": "^10.0.1",
|
|
"remark-parse": "^11.0.0",
|
|
"remark-rehype": "^11.1.2",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.36.0",
|
|
"unified": "^11.0.5"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,mjs,astro,ts}": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
],
|
|
"*.json": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"packageManager": "pnpm@7.28.0+sha1.48be3292711ad554fe944f6caaf9b0f5477524fe"
|
|
}
|