-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 KB
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
{
"name": "ufostation",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"format": "prettier --write ./src",
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^1.1.3",
"@astrojs/rss": "^3.0.0",
"@astrojs/sitemap": "^3.0.3",
"@octokit/rest": "^20.0.2",
"@types/marked": "^6.0.0",
"astro": "^3.4.3",
"astro-compress": "^2.2.3",
"astrojs-service-worker": "^1.1.0",
"marked": "^9.1.5",
"mdast-util-to-string": "^4.0.0",
"reading-time": "^1.5.0",
"rss-parser": "^3.13.0",
"workbox-build": "^7.0.0",
"zooming": "^2.1.1"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.1",
"pretty-quick": "^3.1.3"
},
"lint-staged": {
"*.{js,mjs,css,md,mdx,html,json,astro}": "prettier --write"
}
}