68 lines
1.9 KiB
JSON
68 lines
1.9 KiB
JSON
{
|
|
"name": "@ayco/cozy",
|
|
"version": "0.3.3",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ayoayco/cozy"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"homepage": "https://cozy.pub",
|
|
"scripts": {
|
|
"start": "astro dev",
|
|
"dev": "astro dev",
|
|
"build": "astro telemetry disable && astro build",
|
|
"build:preview": "astro build && node ./server.mjs",
|
|
"publish:patch": "npm version patch && npm publish --access public",
|
|
"publish:minor": "npm version minor && npm publish --access public",
|
|
"deploy:client": "astro build && scp -r dist/client/ ayo@ayco.io:~/cozy/dist/",
|
|
"test": "vitest",
|
|
"prepare": "husky && husky install",
|
|
"lint": "eslint . --config eslint.config.mjs --cache",
|
|
"format": "prettier . --write"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/node": "^9.2.0",
|
|
"@astrojs/sitemap": "^3.3.0",
|
|
"@astrojs/rss": "^4.0.11",
|
|
"@ayco/astro-resume": "^0.4.4",
|
|
"@ayco/astro-sw": "^0.8.14",
|
|
"@fastify/middie": "^9.0.3",
|
|
"@fastify/static": "^8.1.1",
|
|
"astro": "^5.7.4",
|
|
"astro-iconify": "^1.2.0",
|
|
"fastify": "^5.3.2",
|
|
"ultrahtml": "^1.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@astrojs/check": "^0.9.4",
|
|
"@eslint/compat": "^1.2.8",
|
|
"@eslint/js": "^9.25.0",
|
|
"@extractus/article-extractor": "^8.0.17",
|
|
"astro-eslint-parser": "^1.2.2",
|
|
"eslint": "^9.25.0",
|
|
"eslint-config-prettier": "^10.1.2",
|
|
"eslint-plugin-astro": "^1.3.1",
|
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
"eslint-plugin-prettier": "^5.2.6",
|
|
"globals": "^16.0.0",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^15.5.1",
|
|
"prettier": "^3.5.3",
|
|
"prettier-plugin-astro": "^0.14.1",
|
|
"sass": "^1.86.3",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.30.1",
|
|
"vitest": "^3.1.1"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,mjs,astro,ts}": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
],
|
|
"*.json": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|