-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.93 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.93 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:mocking": "NEXT_PUBLIC_MOCKING=true next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint ./**/*.{js,jsx,ts,tsx} --cache --fix",
"prepare": "husky install",
"eslintIgnore": "build/*",
"test": "jest --watch --coverage",
"test:ci": "jest --ci",
"prettier": "prettier --write **/*.{ts,tsx}",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"cypress": "cypress open"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@tanstack/react-query": "^5.8.4",
"@tanstack/react-query-devtools": "^5.8.4",
"@testing-library/user-event": "^14.5.1",
"axios": "^1.6.0",
"class-variance-authority": "^0.6.1",
"classnames": "^2.5.1",
"clsx": "^1.2.1",
"cookies-next": "^4.1.0",
"framer-motion": "^10.16.4",
"lodash": "^4.17.21",
"msw": "^2.2.2",
"next": "13.4.9",
"nock": "^13.3.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.48.2",
"react-icons": "^4.11.0",
"react-intersection-observer": "^9.8.0",
"react-paginate": "^8.2.0",
"react-select": "^5.8.0",
"recoil": "^0.7.7",
"sass": "^1.69.5",
"sweetalert2": "^11.10.1",
"tailwind-merge": "^1.13.2",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.0-alpha.7",
"@storybook/addon-interactions": "^7.6.0-alpha.7",
"@storybook/addon-links": "^7.6.0-alpha.7",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/addon-styling-webpack": "^0.0.5",
"@storybook/blocks": "^7.6.0-alpha.7",
"@storybook/nextjs": "^7.6.0-alpha.7",
"@storybook/react": "^7.6.0-alpha.7",
"@storybook/test": "^7.6.0-alpha.4",
"@testing-library/cypress": "^10.0.1",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@types/jest": "^29.5.8",
"@types/lodash": "^4.14.200",
"@types/node": "^20.4.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"autoprefixer": "^10.4.14",
"cypress": "^13.6.1",
"cypress-file-upload": "^5.0.8",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.4.9",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.2.3",
"postcss": "^8.4.25",
"prettier": "^3.0.0",
"storybook": "^7.6.0-alpha.7",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}