-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.28 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.28 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "resume",
"description": "Personal Website",
"type": "module",
"version": "4.0.0",
"license": "MIT",
"author": {
"name": "Marco Solazzi"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=24.0.0",
"pnpm": "^10.0.0"
},
"private": true,
"browserslist": [
"> 0.5% and last 3 major versions, Firefox ESR, not dead and supports css-grid"
],
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "pnpm run \"/^lint:.*/\"",
"test:integration": "playwright test ./tests/integration.test.ts",
"test:visual": "percy exec -- playwright test './tests/visual.test.ts' --reporter=dot",
"lint:js": "eslint 'src/**/*.{cjs,mjs,js,ts,astro}'",
"lint:css": "stylelint 'src/**/*.{css,astro}'",
"lint:check": "astro check"
},
"dependencies": {
"@astrojs/check": "^0.9.0",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.3.0",
"@fontsource-variable/noto-sans": "5.2.10",
"@fontsource/bree-serif": "5.2.8",
"@fontsource/noto-sans-jp": "5.2.9",
"@iconify-json/logos": "1.2.11",
"@iconify-json/mdi": "1.2.3",
"astro": "5.18.1",
"astro-icon": "1.1.5",
"modern-normalize": "3.0.1",
"nanostores": "1.2.0",
"rehype-external-links": "^3.0.0"
},
"devDependencies": {
"@csstools/postcss-global-data": "3.1.0",
"@eslint/js": "^9.24.0",
"@percy/cli": "1.31.10",
"@percy/playwright": "1.1.0",
"@playwright/test": "^1.42.0",
"@typescript-eslint/parser": "8.58.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-astro": "1.6.0",
"eslint-plugin-prettier": "5.5.5",
"hastscript": "^9.0.1",
"lefthook": "1.13.6",
"postcss": "8.5.8",
"postcss-html": "1.8.1",
"postcss-preset-env": "10.6.1",
"prettier": "3.8.1",
"prettier-plugin-astro": "0.14.1",
"remark-directive": "^4.0.0",
"sharp": "0.34.5",
"stylelint": "16.26.1",
"stylelint-config-html": "1.1.0",
"stylelint-config-property-sort-order-smacss": "10.0.0",
"stylelint-config-standard": "38.0.0",
"stylelint-use-logical": "2.1.3",
"typescript": "5.9.3",
"typescript-eslint": "8.58.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
}
}