-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.01 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
{
"name": "final-project-fe",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"pretest": "npm run lint",
"format": "prettier --loglevel warn --write \"**/*.{ts,tsx,css,md}\"",
"posttest": "npm run format",
"prepare": "husky install",
"sync": "git pull origin main && npm i && git fetch --prune"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@reduxjs/toolkit": "^1.9.3",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"axios": "^1.3.4",
"chart.js": "^4.2.1",
"emotion-reset": "^3.0.1",
"lodash": "^4.17.21",
"lottie-react": "^2.4.0",
"path": "^0.12.7",
"pretendard": "^1.3.6",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.5",
"react-icons": "^4.8.0",
"react-kakao-maps-sdk": "^1.1.6",
"react-modal": "^3.16.1",
"react-plotly.js": "^2.6.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.2",
"react-toastify": "^9.1.2",
"recharts": "^2.5.0"
},
"devDependencies": {
"@types/lodash": "^4.14.192",
"@types/node": "^18.14.6",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.35.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"kakao.maps.d.ts": "^0.1.33",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-tsconfig-paths": "^4.0.5"
},
"engines": {
"node": ">=10"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix"
}
}