-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "portfolio",
"version": "1.0.0",
"private": false,
"description": "My portfolio website",
"author": "Vidit Kushwaha <[email protected]> (https://viditkushwaha.com/)",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vidit-Kushwaha/v2.portfolio.git"
},
"dependencies": {
"@vercel/analytics": "^1.3.1",
"autoprefixer": "10.4.14",
"dotenv": "^16.4.5",
"eslint": "8.41.0",
"eslint-config-next": "13.4.3",
"hooks": "^0.3.2",
"next": "^13.4.3",
"nodemailer": "^6.9.7",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-transition-group": "^4.4.5",
"sharp": "^0.32.1",
"styled-components": "^6.0.0-rc.1",
"tailwindcss": "3.3.2"
},
"devDependencies": {
"@zeit/next-mdx": "^1.2.0",
"husky": "^4.3.8",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3"
},
"keywords": [
"portfolio",
"website",
"nextjs",
"react",
"tailwindcss",
"styled-components"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"eslint --fix"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}