This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
73 lines (73 loc) · 2.5 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
{
"name": "configtips-website",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"serve-assets": "serve -p 3001 --no-port-switching ./public/assets/opengraph/images/",
"wait-for-assets": "wait-on -t 5000 http://localhost:3001/satori-bg-template.png",
"kill-assets": "kill-port 3001 || true",
"start": "astro dev",
"build-setup": "pnpm run serve-assets & pnpm run wait-for-assets",
"build": "pnpm run build-setup && astro build && pnpm run kill-assets",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"format:ci": "prettier --check .",
"lint": "eslint --ext .astro,.js,.jsx,.ts,.tsx . --fix",
"lint:ci": "eslint --ext .astro,.js,.jsx,.ts,.tsx .",
"test": "vitest run",
"pre-commit": "pnpm run format:ci && pnpm run lint:ci && pnpm run test && pnpm run build",
"algolia:sync": "rm -rf ./.algolia; tsc -p ./tsconfig.algolia.json && mv ./.algolia/utils/algoliaIndexer.js ./.algolia/utils/algoliaIndexer.mjs && node ./.algolia/utils/algoliaIndexer.mjs"
},
"dependencies": {
"@algolia/autocomplete-js": "^1.11.0",
"@algolia/autocomplete-theme-classic": "^1.11.0",
"@algolia/client-search": "^4.19.1",
"@astrojs/react": "^3.0.0",
"@astrojs/sitemap": "^3.0.0",
"@astrojs/tailwind": "^5.0.0",
"@fontsource-variable/inter": "^5.0.8",
"@types/react-dom": "^18.0.6",
"algoliasearch": "^4.19.1",
"astro": "^3.0.3",
"astro-icon": "^0.8.1",
"astro-navbar": "^2.0.1",
"astro-tooltips": "^0.6.2",
"dotenv": "^16.3.1",
"gray-matter": "^4.0.3",
"marked": "^7.0.3",
"nanoid": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.0.0",
"remove-markdown": "^0.5.0",
"satori": "^0.10.4",
"sharp": "^0.32.5",
"tailwindcss": "^3.0.24",
"vitest": "^0.34.2"
},
"devDependencies": {
"@types/node": "^20.5.4",
"@types/react": "^18.2.21",
"@types/remove-markdown": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"concurrently": "^8.2.1",
"eslint": "^8.49.0",
"eslint-plugin-astro": "^0.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"kill-port": "^2.0.1",
"prettier": "^3.0.2",
"prettier-plugin-astro": "^0.11.1",
"serve": "^14.2.1",
"shiki": "^0.14.3",
"typescript": "^5.2.2",
"wait-on": "^7.0.1"
},
"engines": {
"node": ">=20",
"pnpm": ">=8.5"
}
}