-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.94 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.94 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze": "next build",
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"typecheck": "tsc --noEmit",
"knip": "knip",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "pnpm run lint && pnpm run typecheck && pnpm run knip",
"fix": "pnpm run lint:fix && pnpm run format",
"mas": "scripts/mas.sh",
"clean": "rm -rf .next && rm -rf node_modules && rm -rf pnpm-lock.yaml"
},
"packageManager": "pnpm@10.12.3",
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@next/bundle-analyzer": "^15.1.2",
"@notionhq/client": "^2.2.14",
"@react-aria/toast": "^3.0.0-beta.10",
"@react-stately/toast": "^3.0.0-beta.2",
"@tabler/icons-react": "^3.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"gsap": "^3.12.5",
"i18next-resources-to-backend": "^1.2.0",
"lenis": "^1.1.20",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"motion": "^12.0.6",
"next": "15.1.2",
"next-intl": "^3.26.3",
"next-seo": "^6.5.0",
"notion-client": "^6.16.0",
"react": "^19.0.0",
"react-aria": "^3.32.1",
"react-aria-components": "^1.1.1",
"react-dom": "^19.0.0",
"react-gtm-module": "^2.0.11",
"react-hook-ambient-light": "^1.1.3",
"react-hook-form": "^7.51.2",
"react-use": "^17.5.0",
"sass": "^1.72.0",
"tailwind-merge": "^2.5.5",
"tailwind-styled-components": "^2.2.0",
"typescript": "5.4.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@csstools/postcss-oklab-function": "^3.0.12",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.29.0",
"@next/eslint-plugin-next": "^15.1.6",
"@types/imagemin": "^8.0.5",
"@types/imagemin-jpegtran": "^5.0.4",
"@types/locomotive-scroll": "^4.1.3",
"@types/lodash": "^4.17.0",
"@types/node": "20.11.30",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"autoprefixer": "10.4.19",
"eslint": "^9.17.0",
"eslint-config-next": "15.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"fluid-tailwind": "^1.0.4",
"globals": "^15.14.0",
"knip": "^5.22.2",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"tailwindcss": "3.4.3"
}
}