-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.91 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
{
"name": "marea-creativa",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check .",
"format:fix": "prettier --write --list-different .",
"release": "release-it"
},
"dependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.12",
"@mui/material": "^5.14.12",
"@release-it/conventional-changelog": "^7.0.2",
"@svgr/webpack": "^8.1.0",
"@vercel/og": "^0.5.20",
"autoprefixer": "10.4.16",
"date-fns": "^2.30.0",
"gray-matter": "^4.0.3",
"husky": "^8.0.3",
"image-size": "^1.0.2",
"next": "latest",
"next-pwa": "^5.6.0",
"next-seo": "^6.1.0",
"postcss": "8.4.31",
"react": "latest",
"react-dom": "latest",
"react-markdown": "^9.0.0",
"release-it": "^16.2.1",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"tailwindcss": "3.3.3",
"zustand": "^4.4.2"
},
"devDependencies": {
"eslint": "^8.49.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3"
},
"release-it": {
"git": {
"commitMessage": "chore: 🔖 Release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug fixes"
}
]
}
}
}
}
}