-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"name": "ellcoell.ciz",
"description": "삼촌 지인 분 홈페이지 제작 지원",
"version": "0.1.0",
"private": true,
"scripts": {
"cache:posts": "ts-node src/shared/api/posts/cache.ts",
"prepare": "husky && npm run cache:posts",
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint-staged": "lint-staged",
"lint": "next lint -d src --ext .ts --ext .tsx --fix --quiet",
"format": "prettier --check ."
},
"dependencies": {
"@headlessui/react": "^1.7.19",
"clsx": "^2.1.1",
"glob": "^10.3.12",
"next": "^14.1.4",
"react": "^18.2.0",
"react-bootstrap-icons": "^1.11.4",
"react-dom": "^18.2.0",
"react-image-gallery": "^1.3.0",
"react-kakao-maps-sdk": "^1.1.26",
"sharp": "^0.33.4",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/node": "20.12.7",
"@types/react": "^18.2.75",
"@types/react-dom": "18.2.24",
"@types/react-image-gallery": "^1.2.4",
"husky": "^9.0.11",
"kakao.maps.d.ts": "^0.1.39",
"lint-staged": "^15.2.2",
"ts-node": "^10.9.2"
},
"optionalDependencies": {
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.0.0",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "3.1.0",
"prettier": "^2.8.8"
}
}