-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
52 lines (52 loc) · 1.62 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
{
"name": "nextjs-ko",
"version": "0.0.1",
"description": "nextjs 공식문서 한국어 번역",
"scripts": {
"dev": "next dev",
"build": "NODE_ENV=production pnpm run generate-sitemap && next build",
"build:local": "pnpm run generate-sitemap && next build",
"start": "next start",
"lint": "next lint --cache",
"format": "prettier --cache --check \"**/*.{js,jsx,ts,tsx,css,scss,mdx}\"",
"format:fix": "prettier --cache --write --ignore-path .prettierignore \"**/*.{js,jsx,ts,tsx,css,scss,mdx}\"",
"prepare": "husky",
"lint-staged": "pnpm format:fix && pnpm lint",
"generate-sitemap": "node scripts/generate-sitemap.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luciancah/nextjs-ko.git"
},
"author": "Jinhyung Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/luciancah/nextjs-ko/issues"
},
"homepage": "https://github.com/nextjs-ko#readme",
"dependencies": {
"@next/third-parties": "^14.2.5",
"globby": "^14.0.2",
"gray-matter": "^4.0.3",
"next": "^13.0.6",
"next-themes": "^0.3.0",
"nextra": "latest",
"nextra-theme-docs": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "18.11.10",
"autoprefixer": "^10.4.19",
"eslint": "8.56.0",
"eslint-config-next": "14.2.5",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.1.1",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.6",
"typescript": "^4.9.3"
}
}