-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.48 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "allyssonsantos.github.io",
"version": "1.15.1",
"description": "My personal website/blog",
"private": true,
"author": "Allysson Santos <[email protected]>",
"bugs": {
"url": "https://github.com/allyssonsantos/allyssonsantos.github.io/issues"
},
"scripts": {
"dev": "next dev",
"build": "contentlayer2 build && next build",
"postbuild": "NODE_OPTIONS='--experimental-json-modules' node ./scripts/generate-rss.mjs && next-sitemap",
"start": "next start",
"lint": "next lint",
"lint:css": "npx stylelint '**/*.css'",
"test": "contentlayer2 build && vitest run",
"prettier": "prettier --write .",
"commit": "cz",
"analyze": "ANALYZE=true next build",
"predeploy": "npm run build",
"deploy": "gh-pages -d out -b gh-pages --dotfiles",
"semantic-release": "semantic-release"
},
"dependencies": {
"@codesandbox/sandpack-react": "2.13.10",
"@codesandbox/sandpack-themes": "2.0.21",
"@next/bundle-analyzer": "^14.2.4",
"@sentry/nextjs": "^8.4.0",
"@svgr/webpack": "8.1.0",
"@types/rss": "^0.0.29",
"class-variance-authority": "0.7.0",
"classnames": "2.5.1",
"contentlayer2": "^0.4.6",
"date-fns": "3.6.0",
"firebase": "10.12.1",
"focus-trap-react": "10.2.3",
"gh-pages": "6.1.1",
"i18next": "23.11.5",
"next": "14.2.5",
"next-contentlayer2": "^0.4.6",
"next-i18next": "15.3.0",
"next-images": "1.8.5",
"next-language-detector": "1.1.0",
"next-pwa": "5.6.0",
"next-seo": "6.5.0",
"next-sitemap": "4.2.3",
"next-themes": "0.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-feather": "2.0.10",
"react-i18next": "14.1.2",
"react-markdown": "9.0.1",
"reading-time": "1.5.0",
"rehype-accessible-emojis": "0.3.2",
"rehype-autolink-headings": "7.1.0",
"rehype-code-titles": "1.2.0",
"rehype-highlight": "7.0.0",
"rehype-prism-plus": "2.0.0",
"rehype-slug": "6.0.0",
"remark-gfm": "^4.0.0",
"rss": "1.2.2"
},
"devDependencies": {
"@playwright/test": "^1.46.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.0.5",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.0",
"@testing-library/jest-dom": "6.4.5",
"@testing-library/react": "15.0.7",
"@types/node": "20.13.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.1.0",
"jsdom": "24.1.0",
"lefthook": "1.6.14",
"prettier": "3.2.5",
"semantic-release": "24.0.0",
"stylelint": "16.6.1",
"stylelint-config-idiomatic-order": "10.0.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-standard": "36.0.0",
"typescript": "5.4.5",
"vitest": "1.6.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github",
[
"@semantic-release/exec",
{
"publishCmd": "npm run deploy"
}
]
]
}
}