-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.14 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
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint --cache .",
"preview": "vite preview",
"postinstall": "husky install",
"format": "prettier --cache --write .",
"lint-staged": "lint-staged",
"test": "jest"
},
"lint-staged": {
"**/*.{tsx,ts,jsx,js}": [
"prettier --write ."
]
},
"dependencies": {
"@babel/core": "^7.22.9",
"@tanstack/react-query": "^4.29.19",
"@tanstack/react-query-devtools": "^4.29.19",
"@testing-library/jest-dom": "^5.17.0",
"@types/html2canvas": "^1.0.0",
"axios": "^1.4.0",
"babel-jest": "^29.6.1",
"dayjs": "^1.11.9",
"framer-motion": "^10.12.22",
"html2canvas": "^1.4.1",
"husky": "^8.0.3",
"lint-staged": "13.2.3",
"lodash.debounce": "^4.0.8",
"lottie-web": "^5.12.2",
"msw": "^1.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.1",
"recoil": "^0.7.7",
"socket.io-client": "^4.7.1",
"styled-components": "^6.0.3"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@jest/globals": "^29.6.2",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^20.4.5",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-react": "^4.0.1",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0-alpha.2",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"jest-environment-jsdom": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vite": "^4.4.0"
},
"msw": {
"workerDirectory": "public"
}
}