-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.15 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.15 KB
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
{
"name": "profile",
"version": "0.2.0",
"private": true,
"packageManager": "pnpm@9.15.9",
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@mdx-js/mdx": "3.1.1",
"@react-icons/all-files": "4.1.0",
"@tailwindcss/container-queries": "0.1.1",
"@vercel/speed-insights": "1.3.1",
"apitable": "1.3.0",
"clsx": "2.1.1",
"i18next": "25.7.2",
"i18next-resources-to-backend": "1.2.1",
"isomorphic-dompurify": "2.16.0",
"next": "16.0.10",
"next-themes": "0.4.6",
"next-usequerystate": "1.20.0",
"prism-react-renderer": "2.4.1",
"react": "19.2.3",
"react-awesome-reveal": "4.3.1",
"react-content-loader": "7.1.1",
"react-dom": "19.2.3",
"react-github-calendar": "5.0.0",
"react-gtm-module": "2.0.11",
"react-i18next": "16.5.0",
"react-intersection-observer": "10.0.0",
"react-responsive-carousel": "3.2.23",
"react-transition-group": "4.4.5",
"react-typist": "2.0.5",
"rehype-mdx-code-props": "3.0.1",
"tailwind-merge": "3.4.0"
},
"devDependencies": {
"@next/bundle-analyzer": "16.0.10",
"@types/node": "22.8.7",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/react-gtm-module": "2.0.4",
"@types/react-transition-group": "4.4.12",
"@types/react-typist": "2.0.6",
"autoprefixer": "10.4.22",
"cross-env": "10.1.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.39.2",
"eslint-config-next": "16.0.10",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-tailwindcss": "^3.18.2",
"globby": "16.0.0",
"gray-matter": "4.0.3",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"plaiceholder": "3.0.0",
"postcss": "8.5.6",
"prettier": "3.7.4",
"sharp": "0.34.5",
"tailwindcss": "3.4.19",
"typescript": "5.9.3"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint . --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}