-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "pm-office",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"lint-staged": {
"*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}": [
"prettier --write"
]
},
"scripts": {
"prepare": "test -d node_modules/husky && husky install || echo \"husky is not installed\"",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write --plugin-search-dir=. ."
},
"devDependencies": {
"@astrojs/node": "^5.3.0",
"@astrojs/tailwind": "^4.0.0",
"@fontsource-variable/anuphan": "^5.0.4",
"@fontsource/ibm-plex-serif": "^5.0.4",
"astro": "^2.8.0",
"astro-seo": "^0.7.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "2.8.8",
"prettier-plugin-astro": "^0.10.0",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.0.24",
"typescript": "^5.1.6"
},
"dependencies": {
"dayjs": "^1.11.9"
}
}