-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.42 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
{
"name": "andre-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prod": "next build && next start",
"prepare": "husky",
"lint:fix": "next lint --fix",
"lint:strict": "next lint '*/**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier --write */**/*.{js,jsx,json,ts,tsx,scss,css,md}",
"analyze": "ANALYZE=true npm run build",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@hotjar/browser": "^1.0.9",
"@iconify/react": "^4.1.1",
"@tabler/icons-react": "^3.19.0",
"@tsparticles/engine": "^3.5.0",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.5.0",
"@typeform/embed-react": "^3.11.0",
"@types/react-vertical-timeline-component": "^3.3.6",
"@types/uuid": "^9.0.8",
"@vercel/speed-insights": "^1.0.10",
"chart.js": "^4.4.4",
"clsx": "^2.1.1",
"framer-motion": "^11.0.3",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"mini-svg-data-uri": "^1.4.4",
"next": "14.1.0",
"next-intl": "^3.4.2",
"next-seo": "^6.4.0",
"nookies": "^2.5.2",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18",
"react-ga4": "^2.1.0",
"react-html-parser": "^2.0.2",
"react-intersection-observer": "^9.13.1",
"sass": "^1.69.7",
"swiper": "^11.1.14",
"tailwind-merge": "^2.5.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.2.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-html-parser": "^2.0.6",
"@types/react-slick": "^0.23.13",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"node-sass": "^9.0.0",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"use-count-up": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"eslint --fix",
"prettier --write",
"tsc --noEmit"
]
}
}