-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.5 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
{
"name": "client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"start": "npm run dev",
"preview": "vite preview",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest",
"test:e2e": "cypress open",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@emotion/styled": "^11.10.4",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/material": "^5.10.9",
"@mui/styled-engine-sc": "^5.10.6",
"@mui/x-date-pickers": "^5.0.4",
"axios": "^1.1.2",
"dayjs": "^1.11.6",
"react": "^18.2.0",
"react-daum-postcode": "^3.1.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.37.0",
"react-modal": "^3.16.1",
"react-router-dom": "^6.4.2",
"react-select": "^5.5.0",
"react-slick": "^0.29.0",
"slick-carousel": "^1.8.1",
"socket.io-client": "^4.5.2",
"styled-components": "^5.3.6",
"vite-plugin-svgr": "^2.2.2"
},
"devDependencies": {
"@cypress/react": "^6.2.0",
"@cypress/vite-dev-server": "^3.1.1",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.13.1",
"@types/react-router-dom": "^5.3.3",
"@types/react-slick": "^0.23.10",
"@types/socket.io-client": "^3.0.0",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "^2.0.1",
"cypress": "^10.7.0",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.4",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.1",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"msw": "^0.47.4",
"prettier": "^2.7.1",
"typescript": "^4.8.2",
"vite": "^3.0.7",
"vite-plugin-mkcert": "^1.10.1"
},
"msw": {
"workerDirectory": "public"
}
}