-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 750 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 750 Bytes
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
{
"name": "ua-website",
"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",
"format": "prettier . --write **/*.astro",
"format-staged": "lint-staged"
},
"dependencies": {
"@astrojs/check": "^0.2.1",
"@astrojs/tailwind": "^5.0.2",
"astro": "^3.3.4",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.1"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write"
]
}
}