-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.44 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
{
"name": "momentia",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev:server": "NEXT_PUBLIC_USE_MSW=false next dev --turbopack -p 8080",
"dev:test": "NEXT_PUBLIC_USE_MSW=true next dev --turbopack -p 8080",
"build": "next build",
"start": "next start",
"lint": "next lint . --ext .js,.jsx,.ts,.tsx",
"fix": "eslint . --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@nextui-org/react": "^2.6.8",
"@tanstack/react-query": "^5.62.3",
"@tanstack/react-query-devtools": "^5.64.1",
"@types/jsonwebtoken": "^9.0.8",
"@types/lodash": "^4.17.13",
"axios": "^1.7.9",
"clipboard": "^2.0.11",
"embla-carousel": "^8.5.1",
"embla-carousel-autoplay": "^8.5.1",
"embla-carousel-react": "^8.5.1",
"embla-carousel-wheel-gestures": "^8.0.1",
"framer-motion": "^11.14.4",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"next": "15.0.4",
"next-themes": "^0.4.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.1",
"zod": "^3.24.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/nextjs": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/test": "^8.4.7",
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "15.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^0.11.1",
"msw": "^2.7.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"storybook": "^8.4.7",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2"
},
"msw": {
"workerDirectory": [
"public"
]
}
}