-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 811 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 811 Bytes
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
{
"name": "refactor-javascript-deep-dive",
"version": "0.0.1",
"description": "자바스크립트 딥다이브",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export"
},
"author": "Ho Yeon Lee <ho991217@kakao.com>",
"license": "MIT",
"homepage": "https://github.com/refactor-study",
"dependencies": {
"@vercel/analytics": "^1.2.2",
"next": "^13.5.6",
"nextjs-toploader": "^1.6.11",
"nextra": "latest",
"nextra-theme-docs": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.3.0"
},
"devDependencies": {
"@types/node": "18.11.10",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^4.9.3"
}
}