-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.6 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
{
"name": "techeerism",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@opentelemetry/api": "1.9.0",
"@opentelemetry/core": "1.9.0",
"@opentelemetry/sdk-trace-base": "1.9.0",
"@sentry/nextjs": "^8",
"@storybook/addons": "^7.6.17",
"@storybook/testing-library": "^0.2.2",
"@tanstack/react-query": "^5.56.2",
"@tanstack/react-query-devtools": "^5.62.2",
"@tanstack/react-query-next-experimental": "^5.62.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/user-event": "^14.5.2",
"@types/react-datepicker": "^7.0.0",
"dayjs": "^1.11.13",
"eslint-config-airbnb": "^19.0.4",
"framer-motion": "^12.4.7",
"js-cookie": "^3.0.5",
"lottie-react": "^2.4.1",
"msw": "^2.7.0",
"next": "14.2.5",
"pdfjs-dist": "^4.8.69",
"prettier": "^3.3.3",
"react": "^18",
"react-datepicker": "^8.1.0",
"react-dom": "^18",
"react-icons": "^5.3.0",
"react-intersection-observer": "^9.15.1",
"react-lottie-player": "^2.1.0",
"react-pdf": "^9.1.1",
"react-player": "^2.16.0",
"react-slick": "^0.30.3",
"slick-carousel": "^1.8.1",
"storybook-addon-next-router": "^4.0.2",
"zustand": "^4.5.5"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-interactions": "^8.3.6",
"@storybook/addon-links": "^8.3.6",
"@storybook/addon-onboarding": "^8.3.6",
"@storybook/blocks": "^8.3.6",
"@storybook/nextjs": "^8.3.6",
"@storybook/react": "^8.3.6",
"@storybook/test": "^8.3.6",
"@svgr/webpack": "^8.1.0",
"@types/js-cookie": "^3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-pdf": "^7.0.0",
"@types/react-slick": "^0",
"@types/slick-carousel": "^1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.10.1",
"postcss": "^8.4.47",
"storybook": "^8.3.6",
"tailwindcss": "^3.4.12",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}