-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
121 lines (121 loc) · 3.58 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"homepage": ".",
"name": "scbj-fe",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --cache --fix",
"prettier:fix": "prettier --write '*.{js,jsx,ts,tsx}'",
"check-conflict-formatting-rules": "npx eslint-config-prettier '*.{ts,tsx}'",
"preview": "vite preview",
"prepare": "husky install",
"test": "vitest",
"generate-pwa-assets": "pwa-assets-generator --preset minimal public/logo.svg",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run check-conflict-formatting-rules",
"npm run prettier:fix",
"npm run lint"
]
},
"dependencies": {
"@tanstack/react-query": "^5.17.9",
"axios": "^1.6.4",
"date-fns": "^3.1.0",
"firebase": "^10.7.2",
"framer-motion": "^10.17.0",
"lodash-es": "^4.17.21",
"lottie-react": "^2.4.0",
"react": "^18.2.0",
"react-datepicker": "^4.25.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-helmet-async": "^2.0.4",
"react-hook-form": "^7.49.3",
"react-icons": "^4.12.0",
"react-modal": "^3.16.1",
"react-router-dom": "^6.22.3",
"react-snap": "^1.23.0",
"react-window": "^1.8.10",
"styled-components": "^6.1.6",
"zustand": "^4.4.7"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.3.3",
"@playwright/test": "^1.40.1",
"@storybook/addon-actions": "^8.0.9",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/addon-onboarding": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/builder-vite": "^8.0.9",
"@storybook/react": "^8.0.9",
"@storybook/react-vite": "^8.0.9",
"@storybook/test": "^8.0.9",
"@tanstack/eslint-plugin-query": "^5.17.7",
"@tanstack/react-query-devtools": "^5.17.9",
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@toss/use-overlay": "^1.4.0",
"@types/jest": "^29.5.11",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.10.5",
"@types/react": "^18.2.43",
"@types/react-datepicker": "^4.19.5",
"@types/react-dom": "^18.2.17",
"@types/react-helmet": "^6.1.11",
"@types/react-window": "^1.8.8",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vite-pwa/assets-generator": "^0.2.3",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^8.0.3",
"jsdom": "^23.2.0",
"lint-staged": "^15.2.0",
"msw": "^2.0.11",
"postcss-styled-syntax": "^0.6.4",
"prettier": "^3.1.1",
"storybook": "^8.0.9",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.1.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.6.1"
},
"msw": {
"workerDirectory": [
"public"
]
},
"reactSnap": {
"include": [
"/",
"/search"
],
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox"
],
"source": "./dist"
}
}