-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.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
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
{
"name": "ludo-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"start:mac": "HOST=local.ludo.study HTTPS=true SSL_CRT_FILE=cert/local.ludo.study.pem SSL_KEY_FILE=cert/local.ludo.study-key.pem && yarn dev ",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"start:windows": "set HOST=local.ludo.study &&yarn dev",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic",
"prepare": "husky install"
},
"dependencies": {
"@hookform/error-message": "^2.0.1",
"@tanstack/react-query": "^5.17.9",
"@tanstack/react-query-devtools": "^5.18.1",
"@types/react-datepicker": "^4.19.5",
"@types/react-slick": "^0.23.13",
"@types/styled-components": "^5.1.34",
"axios": "^1.6.7",
"crypto-js": "^4.2.0",
"date-fns": "^3.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"event-source-polyfill": "^1.0.31",
"msw": "^2.2.4",
"react": "^18.2.0",
"react-datepicker": "^5.0.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-hook-form": "^7.50.1",
"react-router-dom": "^6.22.0",
"react-select": "^5.8.0",
"react-slick": "^0.30.2",
"slick-carousel": "^1.8.1",
"styled-components": "^6.1.8",
"styled-reset": "^4.5.2",
"ts-pattern": "^5.1.1",
"uuid": "^9.0.1",
"vite-plugin-mkcert": "^1.17.3",
"zustand": "^4.5.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.3.3",
"@storybook/addon-a11y": "^8.0.9",
"@storybook/addon-essentials": "^8.0.8",
"@storybook/addon-interactions": "^8.0.8",
"@storybook/addon-links": "^8.0.8",
"@storybook/addon-mdx-gfm": "^8.0.9",
"@storybook/addon-onboarding": "^8.0.8",
"@storybook/blocks": "^8.0.8",
"@storybook/react": "^8.0.8",
"@storybook/react-vite": "^8.0.8",
"@storybook/test": "^8.0.8",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.2",
"@types/crypto-js": "^4.2.2",
"@types/event-source-polyfill": "^1.0.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.10",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"chromatic": "^11.3.0",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"jest-svg-transformer": "^1.0.0",
"lint-staged": "^15.2.7",
"msw-storybook-addon": "^2.0.0",
"prettier": "^3.2.5",
"storybook": "^8.0.8",
"storybook-addon-remix-react-router": "^3.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-bundle-analyzer": "^0.10.5",
"vite-plugin-mkcert": "^1.17.3",
"vite-plugin-radar": "^0.9.6",
"vite-plugin-svgr": "^4.2.0"
},
"msw": {
"workerDirectory": [
"src/Mocks",
"public"
]
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}