-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.76 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@example/basics",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "concurrently \"astro dev\" \"yarn run tailwind\"",
"tailwind": "tailwindcss --config tailwind.config.cjs -i ./public/styles/tailwind.css -o ./public/styles/global.css --watch",
"build:css": "NODE_ENV=production tailwindcss --config tailwind.config.cjs -i ./public/styles/tailwind.css -o ./dist/styles/global.css -m",
"check-blog-filenames": "node scripts/check-blog-filenames.mjs",
"build": "yarn run check-blog-filenames && astro build && yarn run build:css && yarn run pagefind",
"preview": "astro preview",
"prepare": "husky install",
"pagefind": "pagefind --site dist",
"generate-ai-radar-docs": "node scripts/generate-ai-radar-docs.mjs"
},
"devDependencies": {
"@astrojs/mdx": "^4.0.0",
"@astrojs/preact": "^4.0.0",
"@tailwindcss/typography": "^0.5.4",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"astro": "^5.0.0",
"classnames": "^2.3.1",
"concurrently": "^9.0.0",
"dotenv": "^16.0.1",
"eslint": "^9.0.0",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"typescript-eslint": "^8.0.0",
"hast-util-to-string": "^3.0.0",
"hastscript": "^8.0.0",
"husky": "^8.0.1",
"lint-staged": "^14.0.1",
"pagefind": "^1.1.1",
"preact": "^10.6.5",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"tailwindcss": "^3.2.1"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,astro}": [
"eslint --fix",
"prettier --write --ignore-unknown --plugin-search-dir=. ."
]
},
"dependencies": {
"@astrojs/check": "^0.9.0",
"@astrojs/rss": "^4.0.0",
"@astrojs/sitemap": "^3.7.0",
"@preact/compat": "npm:@preact/compat",
"@tailwindui/react": "^0.1.1",
"@types/d3": "^7.4.3",
"d3": "^7.9.0",
"markdown-it": "^14.1.1",
"markdown-it-front-matter": "^0.2.3",
"nbb": "^0.7.132",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat",
"react-hook-form": "^7.43.1",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"sharp": "^0.32.5",
"typescript": "^5.2.2",
"yaml": "^2.1.1",
"zx": "^8.8.5"
},
"resolutions": {
"katex": "0.16.21",
"cross-spawn": "7.0.6",
"braces": "3.0.3",
"micromatch": "4.0.8",
"nanoid": "3.3.11",
"prismjs": "1.30.0",
"eslint/minimatch": "3.1.3",
"@eslint/config-array/minimatch": "3.1.3",
"@eslint/eslintrc/minimatch": "3.1.3",
"glob/minimatch": "3.1.3",
"@babel/helpers": "7.28.6",
"lodash": "4.17.23",
"prebuild-install/tar-fs": "2.1.4",
"sharp/tar-fs": "3.1.1"
},
"packageManager": "yarn@1.22.19"
}