-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.09 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": "hrgui",
"version": "2024.12.09",
"description": "Portfolio website",
"private": true,
"scripts": {
"dev": "astro dev --port 3000",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"format": "prettier --write \"src/**/*\"",
"test": "vitest",
"test-ui": "vitest --ui",
"lint:es": "eslint src",
"lint": "yarn lint:es && tsc",
"prepare": "husky install"
},
"devDependencies": {
"@astrojs/preact": "^4.0.0",
"@astrojs/tailwind": "5.1.3",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@netlify/classnames-template-literals": "^1.0.3",
"@playwright/test": "^1.49.0",
"@preact/preset-vite": "^2.9.3",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/preact": "^3.2.4",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"astro": "^5.0.4",
"autoprefixer": "^10.4.20",
"babel-plugin-istanbul": "^7.0.0",
"c8": "^10.1.2",
"chart.js": "^4.4.7",
"classnames": "^2.5.1",
"eslint": "^9.16.0",
"eslint-config-preact": "^1.5.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"gh-pages": "^6.2.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"lodash.debounce": "^4.0.8",
"postcss": "^8.4.49",
"preact": "^10.25.1",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.16",
"ts-essentials": "^10.0.3",
"typescript": "^5.7.2",
"unist-util-visit": "^5.0.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"overrides": {
"preact": "^10.25.1",
"@preact/preset-vite": "^2.9.3"
}
}