-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2 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
72
73
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"description": "burakgur.com personal web site",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"svgr": "svgr public/icons -d ./icons --svg-props 'className=' --svgo-config .svgr.json"
},
"dependencies": {
"@tabler/icons-react": "^3.20.0",
"@tailwindcss/typography": "^0.5.15",
"@upstash/redis": "^1.20.2",
"@vercel/analytics": "^0.1.11",
"@vercel/og": "^0.5.1",
"clsx": "^1.2.1",
"contentlayer": "^0.3.0",
"feed": "^4.2.2",
"framer-motion": "^10.9.1",
"isomorphic-unfetch": "^3.1.0",
"moment": "2.29.4",
"nex": "^2.0.22",
"next": "14.2.10",
"next-contentlayer": "^0.3.0",
"next-pwa": "^5.6.0",
"next-themes": "^0.2.1",
"nextjs-progressbar": "^0.0.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^7.1.0",
"react-moment": "^1.1.1",
"react-syntax-highlighter": "^15.4.5",
"react-wrap-balancer": "^0.4.0",
"rehype-pretty-code": "^0.9.4",
"shiki": "^0.14.1",
"swr": "^1.3.0"
},
"devDependencies": {
"@svgr/cli": "^5.5.0",
"autoprefixer": "^10.4.20",
"eslint": "7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.10.0",
"eslint-plugin-unicorn": "^37.0.1",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"postcss": "^8.4.47",
"prettier": "2.4.1",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwindcss": "^3.4.14"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint '*/**/*.{js,jsx}' --fix"
]
}
}