-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.46 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
{
"name": "patrickdesjardins",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"serve": "npx serve@latest out",
"lint": "next lint",
"lint:fix": "npx eslint --fix",
"prettier:fix": "npx prettier . --write"
},
"dependencies": {
"@fontsource/open-sans": "^5.1.0",
"@fontsource/oswald": "^5.1.0",
"@fontsource/ubuntu-mono": "^5.1.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"clsx": "^2.1.1",
"next": "^14.2.15",
"next-mdx-remote": "^4.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-prism-plus": "^2.0.0",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"@types/node": "^20.16.11",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-love": "^43.1.0",
"eslint-config-next": "^14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^7.18.0"
}
}