-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.75 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
{
"name": "portfolio-vercel",
"version": "2.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"release": "release-it"
},
"engines": {
"node": "^18.18.0"
},
"dependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@emailjs/browser": "^4.3.3",
"@midudev/tailwind-animations": "^0.0.7",
"@release-it/conventional-changelog": "^8.0.1",
"commitlint": "^19.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"framer-motion": "^11.2.10",
"husky": "^9.0.11",
"ldrs": "^1.0.2",
"next": "^14.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-spinners": "^0.13.8",
"react-toastify": "^10.0.5",
"react-uuid": "^2.0.0",
"reactflow": "^11.11.3",
"release-it": "^17.3.0",
"sharp": "^0.33.4",
"standard-version": "^9.5.0",
"tailwindcss-animated": "^1.1.2"
},
"devDependencies": {
"autoprefixer": "^10",
"postcss": "^8",
"tailwindcss": "^3"
},
"release-it": {
"git": {
"commitMessage": "chore: realease v${version}"
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "feat",
"section": "Features"
},
{
"type": "build",
"section": "Build System"
},
{}
]
}
}
}
}
}