-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "personal-site",
"version": "15.0.0",
"engines": {
"node": ">=18"
},
"author": {
"name": "Marco Richetta"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marcorichetta/personal-site.git"
},
"scripts": {
"lint": "next lint",
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@tailwindcss/typography": "^0.4.0",
"date-fns": "^2.21.3",
"gray-matter": "^4.0.3",
"next": "^14.2.15",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reading-time": "^1.3.0",
"remark-autolink-headings": "^6.0.1",
"remark-code-titles": "^0.1.2",
"remark-slug": "^6.0.0",
"sharp": "^0.32.1"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.0.0",
"@types/node": "^15.12.2",
"@types/react": "^17.0.2",
"autoprefixer": "^10.2.5",
"eslint": "^7.29.0",
"eslint-config-next": "^14.2.15",
"postcss": "^8.3.0",
"postcss-preset-env": "^9.2.0",
"rehype": "^11.0.0",
"tailwindcss": "^2.1.2",
"typescript": "^4.0.3",
"unified": "^9.2.1"
}
}