forked from montanatrouthunters/montanatrouthunters.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.33 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "montana_trout_hunters_website",
"version": "1.2.11",
"description": "Montana Trout Hunters Website",
"type": "module",
"private": true,
"engines": {
"node": "^18.17.1 || ^20.3.0 || >= 21.0.0"
},
"scripts": {
"astro": "astro",
"build": "astro build",
"clean": "rimraf dist/ .astro/",
"dev": "astro dev",
"format": "prettier -w .",
"lint": "eslint .",
"prepare": "is-ci || husky",
"preview": "astro preview",
"start": "astro dev",
"validate:html": "pnpm build && html-validate dist/"
},
"dependencies": {
"@astrojs/check": "0.8.3",
"@astrojs/mdx": "3.1.3",
"@astrojs/partytown": "2.1.1",
"@astrojs/sitemap": "3.1.6",
"@astrojs/tailwind": "5.1.0",
"@astrolib/analytics": "0.5.0",
"@astrolib/seo": "1.0.0-beta.5",
"@fontsource-variable/inter": "5.0.19",
"@iconify-json/flat-color-icons": "1.1.10",
"@iconify-json/mdi": "1.1.67",
"@iconify-json/tabler": "1.1.118",
"astro-compress": "2.3.0",
"@tailwindcss/typography": "0.5.13",
"astro": "4.12.2",
"astro-embed": "0.7.2",
"astro-icon": "1.1.0",
"limax": "4.1.0",
"lodash.merge": "4.6.2",
"rehype-plugin-image-native-lazy-loading": "1.2.0",
"tailwind-merge": "2.4.0",
"tailwindcss": "3.4.7",
"unpic": "3.18.0"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@cspell/eslint-plugin": "8.12.1",
"@eslint/js": "9.8.0",
"@types/eslint__js": "8.42.3",
"@types/js-yaml": "4.0.9",
"@types/lodash.merge": "4.6.9",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"astro-eslint-parser": "1.0.2",
"eslint": "8.57.0",
"eslint-plugin-astro": "1.2.3",
"eslint-plugin-jsx-a11y": "6.9.0",
"globals": "15.8.0",
"html-validate": "8.21.0",
"husky": "9.1.3",
"is-ci": "3.0.1",
"js-yaml": "4.1.0",
"lint-staged": "15.2.7",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"rimraf": "6.0.1",
"typescript": "5.5.4",
"typescript-eslint": "7.17.0"
},
"lint-staged": {
"*.{js,ts,astro,vue,jsx,tsx,mjs,cjs}": [
"eslint",
"prettier --write"
],
"*.{html,css,md,mdx,json}": "npx prettier --write"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}