-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.03 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.03 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
{
"name": "ai-dive-deep",
"type": "module",
"version": "1.0.0",
"description": "ULTIMATE AI DIVE DEEP — interactive field manual by Vlad Podoliako",
"scripts": {
"prebuild": "python3 scripts/scan-screenshots.py && bash scripts/check-template-literals.sh && python3 scripts/check-stack-integrity.py && python3 scripts/check-stale-numbers.py && python3 scripts/check-internal-links.py && python3 scripts/check-glossary-terms.py",
"predev": "python3 scripts/scan-screenshots.py && bash scripts/check-template-literals.sh && python3 scripts/check-stack-integrity.py && python3 scripts/check-stale-numbers.py && python3 scripts/check-internal-links.py && python3 scripts/check-glossary-terms.py",
"lint:tpl": "bash scripts/check-template-literals.sh",
"lint:stack": "python3 scripts/check-stack-integrity.py",
"lint:stale": "python3 scripts/check-stale-numbers.py",
"lint:links": "python3 scripts/check-internal-links.py",
"lint:glossary": "python3 scripts/check-glossary-terms.py",
"lint:external": "python3 scripts/check-external-links.py",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"screens": "python3 scripts/scan-screenshots.py"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.2.0",
"@astrojs/react": "^4.2.0",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.4",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.6",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"astro": "^5.1.5",
"clsx": "^2.1.1",
"framer-motion": "^11.16.0",
"lucide-react": "^0.469.0",
"posthog-js": "^1.374.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0"
}
}