-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.03 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.03 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "over-limit-dev-site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build",
"start": "astro serve",
"preview": "astro preview",
"check": "astro check",
"lint:code": "eslint .",
"lint:code:fix": "eslint --fix .",
"lint:style": "stylelint 'src/**/*.{css,scss}'",
"lint:style:fix": "stylelint 'src/**/*.{css,scss}' --fix",
"format": "prettier --check 'src/**/*.{js,ts,jsx,tsx,css,scss}'",
"format:fix": "prettier --write 'src/**/*.{js,ts,jsx,tsx,css,scss}'",
"test": "vitest run",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/react": "^5.0.0",
"@astrojs/ts-plugin": "^1.10.6",
"@emotion/react": "^11.14.0",
"@fortawesome/fontawesome-svg-core": "^7.0.0",
"@fortawesome/free-brands-svg-icons": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^7.0.0",
"@fortawesome/react-fontawesome": "^3.0.0",
"@nanostores/persistent": "^1.2.0",
"@nanostores/react": "^1.0.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.1.18",
"astro": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"gray-matter": "^4.0.3",
"lucide-react": "^1.0.0",
"markdown-it": "^14.1.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-front-matter": "^0.2.4",
"nanostores": "^1.1.0",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"yaml": "^2.8.1"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.7.0",
"@types/react": "^19.2.7",
"@types/react-test-renderer": "^19.0.0",
"@typescript-eslint/parser": "^8.46.0",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/browser-playwright": "^4.0.8",
"astro-eslint-parser": "^1.2.2",
"eslint": "10.2.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"sass": "^1.93.2",
"stylelint": "^17.0.0",
"stylelint-config-recess-order": "^7.0.0",
"stylelint-config-sass-guidelines": "^13.0.0",
"stylelint-prettier": "^5.0.3",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.4.0",
"typescript": "6.0.2",
"typescript-eslint": "^8.46.0",
"vite-tsconfig-paths": "^6.0.0",
"vitest": "^4.0.8",
"vitest-browser-react": "^2.0.2"
},
"packageManager": "pnpm@10.33.0"
}