-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "kbrdn.dev",
"type": "module",
"version": "1.3.1",
"scripts": {
"precommit": "lint-staged",
"dev": "astro dev",
"start": "astro dev",
"build": "pnpm generate && astro build",
"build-local": "pnpm clean && pnpm generate && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "prettier \"./**/*.{md,mdx,json,js,mjs,cjs,ts,astro,html}\" --write",
"generate": "astro-i18next generate && pnpm lint",
"clean": "rmdir /s /q src\\pages\\en && rmdir /s /q dist"
},
"dependencies": {
"@astrojs/image": "^0.16.1",
"@astrojs/mdx": "^0.18.1",
"@astrojs/react": "^2.1.0",
"@astrojs/sitemap": "^1.2.1",
"@astrojs/tailwind": "^3.1.1",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"astro": "^2.2.1",
"framer-motion": "^10.3.2",
"i18next": "^22.4.12",
"i18next-fs-backend": "^2.1.1",
"iconoir-react": "^6.4.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sass": "^1.59.3",
"tailwindcss": "^3.0.24"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"astro-i18next": "1.0.0-beta.21",
"astro-seo": "^0.7.1",
"lint-staged": "13.2.2",
"prettier": "2.8.8",
"prettier-plugin-astro": "0.8.0"
},
"lint-staged": {
"**/*.{md,mdx,json,js,mjs,cjs,ts,astro,html}": "prettier --write --config .prettierrc"
}
}