-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
77 lines (77 loc) · 2.55 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
74
75
76
77
{
"name": "portfolio-svelte",
"version": "0.0.1",
"license": "GPL-3.0",
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"prebuild": "yarn gen:hashnode",
"build": "next build",
"start": "next start",
"lint": "eslint '{components,pages,utils,data,layouts}/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix '{components,pages,utils,data,layouts}/**/*.{js,jsx,ts,tsx}'",
"format": "prettier --check \"{components,data,pages,styles,utils,layouts}/**/*.{js,jsx,ts,tsx,css,scss,json,yaml,md}\"",
"format:fix": "prettier --write \"{components,data,pages,styles,utils,layouts}/**/*.{js,jsx,ts,tsx,css,scss,json,yaml,md}\"",
"types:check": "tsc --pretty --noEmit",
"gen:hashnode": "ts-node scripts/gen-hashnode-data.ts"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@next/eslint-plugin-next": "^12.2.0",
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"autoprefixer": "^10.4.7",
"eslint": "^8.19.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "^12.2.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"tailwindcss": "^3.1.4",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@fontsource/sen": "^4.5.8",
"@fontsource/syncopate": "^4.5.7",
"@giscus/react": "^2.0.6",
"@radix-ui/react-tooltip": "^0.1.7",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.2",
"@types/lqip-modern": "^1.1.2",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"contentlayer": "^0.2.5",
"date-fns": "^2.28.0",
"dotenv": "^16.0.1",
"esbuild": "^0.14.48",
"framer-motion": "^6.4.2",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"hamburger-react": "^2.5.0",
"kbar": "^0.1.0-beta.36",
"lqip-modern": "^1.2.0",
"mdx-bundler": "^9.0.1",
"next": "^12.2.0",
"next-contentlayer": "^0.2.5",
"next-seo": "^5.4.0",
"nextjs-progressbar": "^0.0.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-hook-form": "^7.33.1",
"react-hot-toast": "^2.2.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-pretty-code": "^0.3.2",
"rehype-slug": "^5.0.1",
"sharp": "^0.30.7",
"shiki": "^0.10.1",
"zustand": "^4.0.0-rc.1"
}
}