-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.14 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"commit": "git-cz",
"lint": "eslint src --ext ts,js,tsx,jsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext ts,js,tsx,jsx --fix",
"format": "prettier --check 'src/**/*.{ts,tsx,js,jsx,css}'",
"format:fix": "prettier --write 'src/**/*.{ts,tsx,js,jsx,css}'",
"typegen": "sanity schema extract --enforce-required-fields && sanity typegen generate",
"prepare": "husky"
},
"dependencies": {
"@portabletext/react": "^3.1.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@react-aria/utils": "^3.25.2",
"@sanity/code-input": "^4.1.4",
"@sanity/icons": "^3.4.0",
"@sanity/image-url": "^1.0.2",
"@sanity/ui": "^2.8.9",
"@sanity/vision": "^3.57.1",
"@t3-oss/env-nextjs": "^0.11.1",
"@vercel/analytics": "1.3.0",
"@vercel/speed-insights": "^1.0.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"little-date": "^1.0.0",
"lucide-react": "^0.436.0",
"next": "14.2.7",
"next-sanity": "^9.4.7",
"next-themes": "^0.3.0",
"nextjs-toploader": "^3.6.15",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-syntax-highlighter": "^15.5.0",
"react-vertical-timeline-component": "^3.6.0",
"reading-time": "^1.5.0",
"rss": "^1.2.2",
"sanity": "^3.57.1",
"sanity-plugin-iconify": "^1.1.2",
"sanity-plugin-media": "^2.3.2",
"sanity-plugin-simpler-color-input": "^2.2.2",
"schema-dts": "^1.1.2",
"sharp": "^0.33.5",
"string-to-color": "^2.2.2",
"styled-components": "^6.1.13",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.4.0",
"@commitlint/prompt-cli": "^19.4.1",
"@next/env": "15.0.0-canary.137",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/react-vertical-timeline-component": "^3.3.6",
"@types/rss": "^0.0.32",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"commitizen": "^4.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-tailwindcss": "^3.17.4",
"husky": "^9.1.5",
"inquirer": "^9.3.7",
"lint-staged": "^15.2.10",
"postcss": "^8.4.45",
"prettier": "3.3.2",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4"
},
"husky": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}