-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.54 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
{
"name": "brokenrobot.xyz",
"description": "Tamas Mezei's personal website.",
"version": "2.0.0",
"private": true,
"author": "Tamas Mezei",
"repository": {
"type": "git",
"url": "[email protected]:mezeitamas/brokenrobot.xyz.git"
},
"type": "module",
"engines": {
"node": ">=23.1.0",
"npm": ">=10.9.0"
},
"scripts": {
"install:playwright": "playwright install --with-deps",
"clean": "rimraf dist/ reports/ .astro/ .cache/ test-results/ playwright-report/",
"format:check": "prettier '**/*.{astro,js,jsx,ts,tsx,cjs,mjs,css,json,md,mdx,yml}' --check",
"format:fix": "prettier '**/*.{astro,js,jsx,ts,tsx,cjs,mjs,css,json,md,mdx,yml}' --write",
"lint:check": "astro sync && eslint 'src/**/*.{astro,ts}'",
"type:check": "astro check && tsc --noEmit",
"test:e2e:check": "playwright test",
"test:e2e:update": "playwright test --update-snapshots",
"audit:check": "npm audit --package-lock-only --omit=dev",
"build": "astro build",
"serve": "astro preview",
"start": "astro dev",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/mdx": "3.1.8",
"@astrojs/rss": "4.0.9",
"@astrojs/sitemap": "3.2.1",
"@astrojs/tailwind": "5.1.2",
"@astrojs/ts-plugin": "1.10.4",
"@fontsource/poppins": "5.1.0",
"@tailwindcss/typography": "0.5.15",
"astro": "4.16.7",
"astro-feather": "1.0.0",
"schema-dts": "1.1.2",
"tailwindcss": "3.4.14"
},
"devDependencies": {
"@axe-core/playwright": "4.10.0",
"@playwright/test": "1.48.2",
"@types/markdown-it": "14.1.2",
"@types/sanitize-html": "2.13.0",
"@typescript-eslint/eslint-plugin": "8.12.0",
"@typescript-eslint/parser": "8.12.0",
"autoprefixer": "10.4.20",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-astro": "1.3.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-tailwindcss": "3.17.5",
"markdown-it": "14.1.0",
"postcss-import": "16.1.0",
"postcss-nesting": "13.0.1",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-sh": "0.14.0",
"prettier-plugin-tailwindcss": "0.6.8",
"rimraf": "6.0.1",
"sanitize-html": "2.13.1",
"typescript": "5.6.3"
}
}