-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
65 lines (65 loc) · 1.53 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
{
"name": "piyush-pawar",
"description": "Personal Website",
"author": {
"name": "Piyush Pawar",
"url": "https://piyushpawar.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/piyush-pawar-17/website.git"
},
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write **/*.{ts,tsx,json,css}",
"lint": "eslint **/*.{ts,tsx}",
"prepare": "husky install"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.2",
"@tippyjs/react": "^4.2.5",
"clsx": "^1.1.1",
"date-fns": "^2.21.0",
"gray-matter": "^4.0.2",
"mdx-prism": "^0.3.3",
"next": "12.1.0",
"next-mdx-remote": "^2.1.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-use-clipboard": "^1.0.7",
"reading-time": "^1.3.0",
"remark-autolink-headings": "^6.0.1",
"remark-code-titles": "^0.1.1",
"remark-slug": "^6.0.0",
"tippy.js": "^6.3.1"
},
"devDependencies": {
"@types/node": "^17.0.18",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"autoprefixer": "^10.2.5",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"postcss": "^8.2.10",
"prettier": "^2.2.1",
"rehype": "^11.0.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.5"
},
"lint-staged": {
"**/*.{ts,tsx,css}": [
"yarn format",
"yarn lint",
"git add"
]
}
}