-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"prettier": "npx prettier {src,pages,data,internationalization}/* --write",
"type-check": "tsc"
},
"dependencies": {
"@chakra-ui/react": "^2.4.4",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/josefin-sans": "^4.5.1",
"framer-motion": "^8.1.4",
"gray-matter": "^4.0.3",
"i18next": "^22.4.8",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.1.1",
"next": "^13.1.0",
"next-seo": "^5.15.0",
"prettier-plugin-organize-imports": "^3.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.0",
"react-icons": "^4.7.1",
"react-intersection-observer": "^9.4.1",
"react-use": "^17.4.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"eslint": "^8.31.0",
"eslint-config-next": "^13.1.1",
"next-sitemap": "^3.1.43",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
}
}