-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.97 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.97 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
{
"name": "betirement-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"lighthouse": "node scripts/lighthouse-audit.js",
"lighthouse:mobile": "node scripts/lighthouse-audit.js http://localhost:3000 mobile",
"lighthouse:desktop": "node scripts/lighthouse-audit.js http://localhost:3000 desktop",
"analyze": "npm run build && node scripts/analyze-bundle.js",
"test:performance": "node scripts/test-slow-connection.js http://localhost:3000",
"perf": "npm run build && npm run lighthouse:mobile && npm run analyze",
"qa:links": "node scripts/check-links.js http://localhost:3000",
"qa:forms": "node scripts/test-forms.js",
"qa:checklist": "node scripts/qa-checklist.js http://localhost:3000",
"qa:all": "npm run qa:forms && npm run qa:checklist",
"pre-launch": "node scripts/pre-launch-checklist.js http://localhost:3000",
"pre-launch:prod": "node scripts/pre-launch-checklist.js https://betirement.com",
"backup": "node scripts/backup-content.js"
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.0.1",
"@types/mdx": "^2.0.13",
"@vercel/analytics": "^1.5.0",
"clsx": "^2.1.1",
"framer-motion": "^12.23.24",
"gray-matter": "^4.0.3",
"lucide-react": "^0.553.0",
"next": "^14.2.33",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reading-time": "^1.5.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
}
}