-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
71 lines (71 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "alexnault.dev",
"description": "My personal website and blog",
"version": "1.0.0",
"author": "Alex Nault <nault.alex@gmail.com>",
"keywords": [
"alex",
"nault",
"dev",
"blog",
"alexnault",
"personal site"
],
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap-config.js",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"{components,pages,lib}/**/*.{js,jsx,ts,tsx}\"",
"generate": "prisma generate"
},
"dependencies": {
"@headlessui/react": "^1.4.1",
"@plaiceholder/next": "^2.4.0",
"@prisma/client": "^3.3.0",
"@tanstack/react-query": "^4.3.9",
"classix": "^2.1.40",
"gray-matter": "^4.0.3",
"next": "^13.5.1",
"next-themes": "0.2.1",
"plaiceholder": "^2.0.1",
"prismjs": "^1.27.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-headings": "^3.0.15",
"react-intersection-observer": "^8.32.2",
"react-markdown": "^5.0.3",
"sharp": "^0.32.6",
"zod": "^3.22.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.2",
"@types/node": "^16.11.6",
"@types/prismjs": "^1.16.6",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"autoprefixer": "^10.4.2",
"eslint": "^7.29.0",
"eslint-config-next": "^12.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.3.0",
"next-secure-headers": "^2.2.0",
"next-sitemap": "^1.9.12",
"postcss": "^8.4.31",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.7",
"prisma": "^3.3.0",
"tailwindcss": "^3.1.2",
"typescript": "^4.4.4"
},
"repository": {
"type": "git",
"url": "https://github.com/alexnault/alexnault.dev"
},
"bugs": {
"url": "https://github.com/alexnault/alexnault.dev/issues"
}
}