-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.73 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
{
"name": "my-portfolio",
"version": "0.1.0",
"engines": {
"node": ">=18",
"npm": ">=8"
},
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint:fix": "next lint --fix",
"format": "prettier --check --ignore-path .gitignore .",
"lint": "next lint",
"prettier": "prettier --write .",
"prepare": "husky install",
"check-types": "tsc --project tsconfig.json --pretty --noEmit"
},
"dependencies": {
"@types/node": "20.10.4",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"@upstash/redis": "^1.27.1",
"@vercel/analytics": "^1.1.1",
"@vercel/speed-insights": "^1.0.3",
"clsx": "^2.0.0",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"framer-motion": "^10.16.16",
"next": "14.0.4",
"next-mdx-remote": "^4.4.1",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-use": "^17.4.2",
"sugar-high": "^0.5.6"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@tailwindcss/typography": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"autoprefixer": "^10.4.16",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"postcss": "^8.4.32",
"prettier": "3.1.1",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(ts|tsx)": [
"prettier --check --ignore-path .gitignore ."
]
}
}