-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.12 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
66
67
68
69
70
71
72
{
"name": "resume",
"description": "Personal Website",
"type": "module",
"version": "4.0.0",
"license": "MIT",
"author": {
"name": "Marco Solazzi"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.15.0",
"pnpm": "^9.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",
"@fontsource-variable/open-sans": "^5.0.29",
"@fontsource/bree-serif": "^5.0.13",
"@iconify-json/logos": "1.2.3",
"@iconify-json/mdi": "1.2.1",
"astro": "4.15.12",
"astro-icon": "1.1.1",
"modern-normalize": "2.0.0",
"nanostores": "0.11.3",
"rehype-external-links": "^3.0.0"
},
"devDependencies": {
"@csstools/postcss-global-data": "3.0.0",
"@eslint/js": "^9.6.0",
"@percy/cli": "1.29.4",
"@percy/playwright": "1.0.6",
"@playwright/test": "^1.42.0",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/parser": "8.8.1",
"eslint": "9.11.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-astro": "1.2.4",
"eslint-plugin-prettier": "5.2.1",
"lefthook": "1.7.22",
"postcss": "8.4.47",
"postcss-html": "1.7.0",
"postcss-preset-env": "9.6.0",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"sharp": "0.33.5",
"stylelint": "16.9.0",
"stylelint-config-html": "1.1.0",
"stylelint-config-property-sort-order-smacss": "10.0.0",
"stylelint-config-standard": "36.0.1",
"stylelint-use-logical": "2.1.2",
"typescript": "5.6.3",
"typescript-eslint": "8.8.1"
}
}