-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
{
"name": "portfolio-site-2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"check-types": "tsc --noEmit",
"check-format": "prettier --check",
"format": "prettier --write",
"lint:fix": "eslint --fix",
"check-lint": "eslint",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build"
},
"dependencies": {
"@svgr/webpack": "^8.1.0",
"framer-motion": "^11.3.21",
"lucide-react": "^0.438.0",
"next": "14.2.5",
"pnpm": "^9.11.0",
"react": "^18.3.1",
"react-dom": "^18",
"react-icons": "^5.3.0",
"tailwind-merge": "^2.4.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.7",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"husky": "^8.0.0",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.10",
"typescript": "^5",
"typescript-eslint": "^8.3.0"
}
}