-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.17 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.17 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "naejango",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.0.0",
"npm": ">=8.5.5",
"yarn": ">=4.0.0"
},
"scripts": {
"dev": "env-cmd -f .env.local yarn run open-browser && next dev",
"dev-pass": "PORT=3001 && env-cmd -f .env.local yarn && next dev",
"dev-ssl": "env-cmd -f .env.local yarn run open-browser-ssl && caddy reverse-proxy --from localhost:3000 --to localhost:3001",
"open-browser": "open http://localhost:3000/",
"open-browser-ssl": "open https://localhost:3000/",
"build": "env-cmd -f .env.production next build",
"build-dev": "env-cmd -f .env.local next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watchAll"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.370.0",
"@aws-sdk/signature-v4-crt": "^3.370.0",
"@headlessui/react": "^1.7.15",
"@stomp/stompjs": "^7.0.0",
"@tanstack/react-query": "^4.29.12",
"aws-crt": "^1.18.1",
"aws-sdk": "^2.1417.0",
"axios": "^1.4.0",
"event-source-polyfill": "^1.0.31",
"gsap": "^3.12.1",
"jwt-decode": "^3.1.2",
"lottie-react": "^2.4.0",
"next": "13.4.6",
"next-pwa": "5.5.4",
"next-seo": "^6.1.0",
"react": "18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.44.2",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.11.0",
"react-kakao-maps-sdk": "^1.1.9",
"react-loading-skeleton": "^3.3.1",
"react-uuid": "^2.0.0",
"recoil": "^0.7.7",
"sharp": "^0.32.6",
"sockjs-client": "^1.6.1",
"swiper": "^9.4.1"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@tailwindcss/forms": "^0.5.3",
"@tanstack/react-query-devtools": "^4.29.12",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/babel__core": "^7",
"@types/event-source-polyfill": "^1.0.2",
"@types/jest": "^29.5.6",
"@types/node": "20.2.5",
"@types/react": "^18.2.17",
"@types/sockjs-client": "^1.5.1",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.3",
"babel-plugin-inline-react-svg": "^2.0.2",
"encoding": "^0.1.13",
"env-cmd": "^10.1.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "13.4.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^6.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"kakao.maps.d.ts": "^0.1.38",
"msw": "^2.0.8",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"sass": "^1.62.1",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"cacheDirectories": [
"node_modules/",
".yarn/",
".next/cache/"
],
"packageManager": "yarn@4.0.2",
"resolutions": {
"@yarnpkg/parsers": "3.0.0-rc.48.1"
}
}