-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 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
{
"name": "website",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run build:docs && next build",
"build:vercel": "next build",
"build:railway": "next build",
"build:docs": "cd .. && mkdocs build --clean && rm -rf website/public/framework-docs && cp -r site website/public/framework-docs",
"start": "next start",
"lint": "eslint"
},
"overrides": {
"tar": "^7.5.7"
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.0.1",
"@sendgrid/mail": "^8.1.6",
"@stripe/stripe-js": "^8.1.0",
"bcryptjs": "^3.0.2",
"gray-matter": "^4.0.3",
"ioredis": "^5.8.2",
"next": "15.5.10",
"nodemailer": "^7.0.10",
"pg": "^8.16.3",
"react": "19.1.4",
"react-dom": "19.1.4",
"react-markdown": "^10.1.0",
"reading-time": "^1.5.0",
"reading-time-estimator": "^1.14.0",
"recharts": "^3.6.0",
"rehype-highlight": "^7.0.2",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"resend": "^6.5.2",
"stripe": "^19.1.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/pg": "^8.15.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "15.5.9",
"tailwindcss": "^4",
"typescript": "5.9.3"
}
}