-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.21 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
{
"name": "interviewcue-ai-marketing-site",
"type": "module",
"version": "0.0.1",
"private": true,
"description": "InterviewCue AI is an AI interview coach for tech-industry roles with resume-readiness analysis, personalized mock interviews, and real-time interview cues.",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/InterviewCue-AI/interviewcue-ai.git"
},
"homepage": "https://www.interviewcue.ai",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "node scripts/build-static.mjs dev",
"build:dev": "node scripts/build-static.mjs dev",
"build:prod": "node scripts/build-static.mjs prod",
"build:astro": "astro build",
"preview": "astro preview",
"astro": "astro",
"check:content": "node scripts/validate-content.mjs",
"check:seo": "node scripts/validate-keywords.mjs",
"audit:articles": "node scripts/audit-articles.mjs",
"audit:articles:report": "node scripts/audit-articles.mjs --write"
},
"dependencies": {
"@astrojs/mdx": "^6.0.3",
"@astrojs/sitemap": "^3.7.3",
"@tailwindcss/vite": "^4.3.0",
"astro": "^6.4.5",
"tailwindcss": "^4.3.0"
}
}