-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.84 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
{
"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/ [email protected]:~/cozy/dist/",
"test": "vitest",
"prepare": "husky && husky install",
"lint": "eslint . --config eslint.config.mjs --cache",
"format": "prettier . --write"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/node": "^9.1.0",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.2.1",
"@ayco/astro-sw": "^0.8.14",
"@eslint/compat": "^1.2.6",
"@eslint/js": "^9.20.0",
"@extractus/article-extractor": "^8.0.17",
"@fastify/middie": "^9.0.3",
"@fastify/static": "^8.1.0",
"astro": "^5.3.0",
"astro-eslint-parser": "^1.2.1",
"astro-iconify": "^1.2.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"fastify": "^5.2.1",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"prettier-plugin-astro": "^0.14.1",
"sass": "^1.85.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"ultrahtml": "^1.5.3",
"vitest": "^3.0.5"
},
"lint-staged": {
"*.{js,mjs,astro,ts}": [
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"
]
}
}