forked from chrismwilliams/astro-theme-cactus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.73 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
{
"name": "@stelo/me",
"version": "1.0.0",
"author": {
"name": "stelo",
"email": "contact@stelo.dev"
},
"license": "MIT",
"engines": {
"node": ">=20",
"npm": ">=9"
},
"scripts": {
"clean": "rm -rf dist/ node_modules/",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"format": "prettier -w --cache . && prettier -w --cache **/*.astro",
"check": "astro check",
"precommit": "astro check && prettier -w --cache . && prettier -w --cache **/*.astro"
},
"devDependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/sitemap": "3.1.4",
"@astrojs/tailwind": "5.1.0",
"@astrojs/vercel": "^7.6.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@iconify-json/ph": "^1.1.13",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.13",
"@types/eslint": "^8.56.10",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vercel/speed-insights": "^1.0.11",
"astro": "4.11.3",
"astro-eslint-parser": "^0.16.3",
"astro-icon": "^1.1.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-astro": "^1.1.2",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-markdown": "^5.0.0",
"eslint-plugin-perfectionist": "^2.10.0",
"eslint-plugin-regexp": "^2.5.0",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"husky": "^9.0.11",
"postcss": "^8.4.38",
"postcss-html": "^1.6.0",
"postcss-import": "^16.1.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "0.14.0",
"prettier-plugin-tailwindcss": "^0.6.1",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
}
}