-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.53 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.53 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
{
"name": "skilldash",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"analyze": "cross-env ANALYZE=true next build",
"bundle-size": "node scripts/analyze-bundle.js",
"lighthouse": "lighthouse https://skilldash.live --output html --output-path ./lighthouse-report.html --chrome-flags=\"--headless\"",
"lighthouse-ci": "lighthouse https://skilldash.live --output json --output-path ./lighthouse-report.json",
"perf-test": "pnpm run lighthouse && pnpm run bundle-size",
"clean": "rimraf .next out",
"prebuild": "pnpm run clean",
"postbuild": "node -e \"console.log('Skipping next-sitemap: using app/sitemap.ts')\"",
"deps-check": "pnpm outdated",
"deps-update": "pnpm update",
"security-audit": "pnpm audit --audit-level moderate"
},
"dependencies": {
"@ai-sdk/perplexity": "^2.0.20",
"@google/generative-ai": "^0.24.1",
"@headlessui/react": "^2.2.9",
"@next/third-parties": "^16.2.2",
"@perplexity-ai/perplexity_ai": "^0.6.0",
"@sentry/browser": "^10.47.0",
"@sentry/nextjs": "^10.38.0",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"ai": "^5.0.99",
"cheerio": "^1.0.0-rc.12",
"contentful": "^11.10.3",
"firebase": "^12.9.0",
"firebase-admin": "^13.6.1",
"googleapis": "^170.1.0",
"groq-sdk": "^0.32.0",
"lucide-react": "^0.294.0",
"mammoth": "^1.11.0",
"next": "16.2.2",
"pdf-parse": "^2.4.5",
"perplexity-sdk": "^1.0.4",
"react": "^19.2.4",
"react-cookie-consent": "^9.0.0",
"react-dom": "^19.2.4",
"react-google-recaptcha-v3": "^1.11.0",
"react-icons": "^5.5.0",
"react-markdown": "^9.1.0",
"vercel": "^50.41.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/json-schema": "^7.0.15",
"@types/node": "24.5.2",
"@types/pdf-parse": "^1.1.5",
"@types/react": "19.1.13",
"@types/react-dom": "19.1.9",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"autoprefixer": "^10.4.24",
"baseline-browser-mapping": "^2.9.19",
"cross-env": "^7.0.3",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"lighthouse": "^12.8.2",
"next-sitemap": "^4.2.3",
"postcss": "^8.5.6",
"rimraf": "^6.1.2",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"webpack-bundle-analyzer": "^4.10.2"
}
}