-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.89 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
{
"name": "tattour-client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "husky install",
"lint:fix": "eslint src --ext .ts --parser-options=project:'tsconfig.json' --fix",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint:fix",
"prettier --write"
]
},
"dependencies": {
"@types/lodash": "^4.14.195",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-query": "^1.2.9",
"@types/styled-components": "^5.1.26",
"axios": "^1.4.0",
"fabric": "^5.3.0",
"framer-motion": "^10.12.18",
"grapheme-splitter": "^1.0.4",
"lodash": "^4.17.21",
"node-gyp": "^10.0.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-daum-postcode": "^3.1.3",
"react-dom": "^18.2.0",
"react-indiana-drag-scroll": "^2.2.0",
"react-lottie": "^1.2.4",
"react-modal-sheet": "^2.0.0",
"react-notion": "^0.10.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.14.0",
"recoil": "^0.7.7",
"recoil-persist": "^5.0.1",
"styled-components": "^6.0.1",
"swiper": "^10.0.2",
"vite-plugin-svgr": "^3.2.0"
},
"devDependencies": {
"@types/fabric": "^5.3.3",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/react-lottie": "^1.2.10",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.43.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"typescript": "^5.0.2",
"vite": "^4.3.9"
}
}