-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 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
58
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint ./src --ext .ts,.tsx --fix",
"eslint": "eslint ./src --ext .ts,.tsx"
},
"dependencies": {
"autoprefixer": "10.4.15",
"caniuse-lite": "^1.0.30001651",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"lucide-react": "^0.271.0",
"next": "^14.2.5",
"nodemailer": "^6.9.14",
"postcss": "8.4.28",
"prettier-plugin-tailwindcss": "^0.6.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.33.5",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"tailwindcss": "3.4.10",
"typescript": "5.2.2"
},
"devDependencies": {
"eslint-config-next": "13.4.19",
"eslint": "8.48.0",
"@gm-dev/eslint-config": "latest",
"@tailwindcss/typography": "^0.5.14",
"@types/node": "20.5.6",
"@types/nodemailer": "^6.4.15",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.21.0"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"eslintConfig": {
"ignorePatterns": [
"node_modules",
"*.md"
],
"root": true,
"extends": [
"@gm-dev/eslint-config/tailwind/next"
]
}
}