-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 2.04 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
{
"name": "mogua",
"main": "index.js",
"version": "0.0.0",
"description": "møgua는 스터디 및 과외 모집을 위한 플랫폼입니다.",
"homepage": "https://mogua.vercel.app",
"author": {
"name": "møgua-station",
"url": "https:/github.com/mogua-station/FE"
},
"private": true,
"scripts": {
"start": "next start",
"build": "next build",
"dev": "next dev",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install",
"test": "jest"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@tanstack/react-query": "^5.62.11",
"@tanstack/react-query-devtools": "^5.62.11",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"framer-motion": "^12.0.1",
"idb": "^8.0.1",
"next": "14.2.22",
"overlay-kit": "^1.4.1",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.54.2",
"react-intersection-observer": "^9.15.0",
"react-toastify": "^11.0.3",
"tailwind-merge": "^2.6.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^8",
"eslint-config-next": "14.2.22",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"react-spinners": "^0.15.0",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.5",
"typescript": "^5"
}
}