-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.37 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
{
"name": "portfolio-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{html,ts,scss}": [
"prettier --write"
],
"src/**/*.ts": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.1",
"aos": "^2.3.4",
"date-fns": "^2.29.1",
"next": "^12.2.2",
"next-themes": "^0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/aos": "^3.0.4",
"@types/node": "18.0.3",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"autoprefixer": "^10.4.7",
"contentlayer": "^0.2.6",
"eslint": "^8.20.0",
"eslint-config-next": "12.2.2",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"next-contentlayer": "^0.2.6",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.6",
"typescript": "4.7.4"
}
}