-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 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
{
"name": "personal-website",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn tsc && next build",
"export": "next export",
"start": "next start",
"postbuild": "next-sitemap",
"lint": "next lint",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook",
"prepare": "husky"
},
"dependencies": {
"@emailjs/browser": "^4.3.3",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@googlemaps/react-wrapper": "^1.1.35",
"@mui/icons-material": "^5.15.15",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5.15.15",
"@mui/styles": "^5.15.15",
"@mui/x-date-pickers": "^7.3.1",
"@sentry/nextjs": "^7.105.0",
"@splidejs/react-splide": "^0.7.12",
"@splidejs/splide": "^4.1.4",
"@tanstack/react-query": "^5.32.0",
"axios": "^1.6.8",
"emailjs": "^4.0.3",
"fast-xml-parser": "^4.3.6",
"formik": "^2.4.6",
"hex-rgb": "^5.0.0",
"hex-to-hsl": "^1.0.2",
"husky": "^9.0.11",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"next": "^14.2.3",
"next-sitemap": "^4.2.3",
"react": "^18.3.1",
"react-awesome-reveal": "^4.1.0",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-player": "^2.12.0",
"react-text-loop-next": "^0.0.3",
"typescript": "^5.4.5",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@storybook/addon-a11y": "^6.5.15",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-docs": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/builder-vite": "^0.2.6",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "^6.5.15",
"@storybook/react": "^6.5.15",
"@storybook/test-runner": "^0.9.2",
"@storybook/testing-library": "^0.0.13",
"@types/google.maps": "^3.55.7",
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"babel-loader": "^8.3.0",
"eslint": "^9.1.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.2.3",
"lint-staged": "^15.1.0",
"vite": "^5.2.10"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
}
}