-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.63 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.63 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "hpcs-web",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"startw": "astro dev --host 0.0.0.0",
"build": "astro check && astro build",
"lint": "run-p lint:*",
"lint:fmt": "prettier --check .",
"lint:astro": "astro check",
"lint:eslint": "eslint .",
"lint:stylelint": "stylelint \"**/*.{astro,css}\"",
"preview": "astro preview",
"fix": "run-p fix:*",
"fix:fmt": "prettier -w .",
"fix:stylelint": "stylelint \"**/*.{astro,css}\" --fix",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.2.4",
"@astrojs/sitemap": "^3.3.0",
"@iconify-json/charm": "^1.2.2",
"@iconify-json/fluent": "^1.2.19",
"@iconify-json/ic": "^1.2.2",
"@iconify-json/material-symbols": "^1.2.20",
"@iconify-json/ph": "^1.2.2",
"astro": "^5.7.3",
"astro-icon": "^1.1.5",
"astro-seo": "^0.8.4"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@rollup/plugin-yaml": "^4.1.2",
"@types/bun": "^1.2.10",
"@types/eslint": "^9.6.1",
"@typescript-eslint/parser": "^8.30.1",
"astro-eslint-parser": "^1.2.2",
"eslint": "^9.24.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"npm-run-all2": "^8.0.0",
"postcss-html": "^1.8.0",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"sharp": "^0.34.1",
"stylelint": "^16.25.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended": "^17.0.0",
"stylelint-prettier": "^5.0.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1"
}
}