-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 KB
/
package.json
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": "axelrad-climbing",
"version": "1.0.0",
"description": "A climbing blog for Eden and Itai Axelrad.",
"engines": {
"node": ">=22"
},
"author": {
"name": "Itai Axelrad",
"email": "[email protected]",
"url": "https://itaiaxelrad.com/"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write ."
},
"dependencies": {
"@mantine/core": "^7.17.1",
"@mantine/form": "^7.17.1",
"@mantine/hooks": "^7.17.1",
"@mantine/notifications": "^7.17.1",
"@mantine/spotlight": "^7.17.1",
"@tabler/icons-react": "^3.31.0",
"@types/nodemailer": "^6.4.17",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"gray-matter": "^4.0.3",
"markdown-it": "^14.1.0",
"markdown-it-image-lazy-loading": "^2.0.1",
"markdown-it-implicit-figures": "^0.12.0",
"markdown-it-replace-link": "^1.2.2",
"next": "^15.2.1",
"nodemailer": "^6.10.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.0.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.2.0-canary.76",
"postcss": "^8.5.1",
"postcss-preset-mantine": "1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.5.1",
"typescript": "^5"
}
}