-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.29 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watchAll",
"test:ci": "jest --ci",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^3.3.1",
"axios": "^1.6.7",
"classnames": "^2.3.2",
"cookies-next": "^4.1.1",
"formik": "^2.4.5",
"next": "latest",
"next-client-cookies": "^1.1.0",
"react": "^18.2.0",
"react-datepicker": "^5.0.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"react-toastify": "^9.1.3",
"server-only": "^0.0.1",
"uuid": "^9.0.1",
"yup": "0.32.11",
"zustand": "^4.4.7"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.6",
"@storybook/addon-interactions": "^7.6.6",
"@storybook/addon-links": "^7.6.6",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.6",
"@storybook/nextjs": "^7.6.6",
"@storybook/react": "^7.6.6",
"@storybook/test": "^7.6.6",
"@testing-library/jest-dom": "6.1.5",
"@testing-library/react": "14.1.2",
"@types/jest": "29.5.11",
"@types/react": "18.2.45",
"@types/react-datepicker": "^4.19.5",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.0.1",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.32",
"prettier": "3.1.1",
"storybook": "^7.6.6",
"tailwindcss": "^3.4.0",
"typescript": "*"
},
"lint-staged": {
"src/**/**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"src/**/**/*.{js,jsx,ts,tsx,css,scss,md}": "prettier --write --ignore-unknown"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}