-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "personal-website",
"version": "1.0.0",
"description": "This is my personal website written in React with NextJS and TypeScript, using MDX for the articles, and next-translate to support English and Spanish.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "https://github.com/Syoker/personal-website"
},
"keywords": [
"React",
"NextJS",
"TypeScript"
],
"author": {
"name": "Syoker",
"email": "[email protected]",
"url": "https://syoker.vercel.app"
},
"license": "MIT",
"type": "module",
"dependencies": {
"@mdx-js/loader": "^3.0.0",
"@mdx-js/mdx": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@vercel/analytics": "^1.1.1",
"classnames": "^2.3.2",
"dayjs": "^1.11.10",
"next": "14.0.4",
"next-translate": "^2.6.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.12.0",
"sharp": "^0.33.1",
"sonner": "^1.2.4",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@types/node": "20.10.5",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"next-translate-plugin": "^2.6.2",
"typescript": "5.3.3"
}
}