-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.27 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
{
"name": "chr-ge.com",
"version": "0.1.2",
"private": true,
"author": "George Christeas <[email protected]> (https://chr-ge.com/)",
"license": "GPL-2.0-or-later",
"scripts": {
"type-check": "tsc --pretty --noEmit",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"gen:theme-typings": "chakra-cli tokens theme/theme.ts",
"analyze": "ANALYZE=true yarn build",
"postinstall": "husky install"
},
"homepage": "https://chr-ge.com",
"repository": {
"type": "git",
"url": "git+https://github.com/chr-ge/chr-ge.com.git"
},
"dependencies": {
"@chakra-ui/next-js": "^2.4.2",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource-variable/manrope": "^5.2.5",
"@hookform/resolvers": "^2.9.11",
"@vercel/analytics": "^1.5.0",
"envsafe": "^2.0.3",
"focus-visible": "^5.2.1",
"framer-motion": "^6.5.1",
"i18next": "^22.5.1",
"next": "^14.2.22",
"next-i18next": "^13.3.0",
"next-safe": "^3.5.0",
"next-seo": "^5.15.0",
"next-usequerystate": "^1.20.0",
"posthog-js": "^1.229.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-i18next": "^12.3.1",
"react-icons": "^5.4.0",
"react-intersection-observer": "^8.34.0",
"sharp": "^0.32.6",
"zod": "^3.24.2"
},
"devDependencies": {
"@chakra-ui/cli": "^2.5.5",
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@next/bundle-analyzer": "^14.2.16",
"@types/node": "^18.16.3",
"@types/react": "^18.3.13",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.16",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.37.4",
"husky": "^8.0.3",
"lint-staged": "^12.5.0",
"prettier": "^2.6.2",
"typescript": "^4.9.5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}