-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 KB
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
{
"name": "portfolio",
"private": true,
"scripts": {
"build": "NODE_ENV=production next build",
"dev": "NODE_ENV=development next dev",
"lint": "next lint",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"start": "NODE_ENV=production next start",
"test": "npm run prettier:check && npm run lint"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@tailwindcss/forms": "^0.5.4",
"@vercel/analytics": "^0.1.11",
"@vercel/speed-insights": "1.3.1",
"classnames": "2.3.2",
"date-fns": "2.29.3",
"next": "15.5.9",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/preset-react": "7.18.6",
"@tailwindcss/typography": "0.5.8",
"@types/ms": "0.7.31",
"@types/node": "20.19.26",
"@types/react": "18.3.27",
"@types/react-dom": "18.3.3",
"@vercel/git-hooks": "1.0.0",
"autoprefixer": "10.4.22",
"eslint": "8.57.1",
"eslint-config-next": "15.5.9",
"lint-staged": "13.0.3",
"postcss": "8.5.6",
"prettier": "3.7.4",
"prettier-plugin-tailwindcss": "^0.1.13",
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"tailwindcss": "^3.3.3",
"typescript": "5.9.3",
"velite": "^0.3.1"
}
}