-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
109 lines (109 loc) · 3.13 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
{
"name": "yuricunha",
"description": "A website to show off some of my projects",
"version": "2",
"private": true,
"author": "https://www.github.com/isyuricunha",
"license": "MIT",
"keywords": [
"nextjs",
"starter",
"typescript"
],
"scripts": {
"release": "npm version patch",
"dev": "next",
"debug": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "1.0.15",
"@chakra-ui/react": "1.6.7",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mapbox/rehype-prism": "0.7.0",
"@mdx-js/loader": "2.1.5",
"@next/mdx": "11.1.2",
"@radix-ui/colors": "^0.1.8",
"clsx": "^2.1.0",
"cross-env": "7.0.3",
"date-fns": "2.23.0",
"feed": "4.2.2",
"firebase-admin": "11.10.1",
"framer-motion": "^4.1.17",
"fs": "0.0.1-security",
"gray-matter": "4.0.3",
"i18next": "23.11.3",
"i18next-browser-languagedetector": "7.2.1",
"mdx-prism": "0.3.4",
"next-mdx-remote": "4.4.1",
"next-seo": "^6.6.0",
"react": "17.0.2",
"react-awesome-reveal": "3.8.1",
"react-dom": "17.0.2",
"react-ga": "3.3.1",
"react-hotkeys-hook": "3.4.0",
"react-i18next": "14.1.1",
"react-icons": "^5.4.0",
"react-query": "^3.39.3",
"react-text-transition": "1.3.0",
"reading-time": "1.5.0",
"remark-autolink-headings": "7.0.1",
"remark-code-titles": "0.1.2",
"remark-slug": "7.0.0",
"rss": "1.2.2",
"sitemap": "7.1.1",
"stream-to-promise": "3.0.0",
"vcards-js": "2.10.0",
"workbox-webpack-plugin": "^7.3.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "13.1.0",
"@types/node": "^20.0.0",
"@types/react": "17.0.21",
"@types/react-dom": "17.0.9",
"@typescript-eslint/eslint-plugin": "4.31.1",
"@typescript-eslint/parser": "4.31.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.32.0",
"eslint-config": "0.3.0",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "7.0.2",
"next": "12.1.0",
"next-plausible": "3.12.4",
"next-sitemap": "4.2.3",
"prettier": "2.4.1",
"react-palette": "1.0.2",
"rehype": "12.0.0",
"tailwindcss": "^3.4.1",
"typescript": "4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "npx next lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}