-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "jpc-astro-linktree",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/tailwind": "^6.0.2",
"astro": "^5.16.9",
"astro-aws-amplify": "^0.2.4",
"astro-icon": "^1.1.5",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3"
},
"devDependencies": {
"@iconify-json/mdi": "^1.2.3",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.14.1"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --cache --fix"
],
"*.astro": "prettier --write",
"*.json": "prettier --write",
"*.yml": "prettier --write",
"*.md": "prettier --write"
}
}