-
Notifications
You must be signed in to change notification settings - Fork 385
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) ยท 1.93 KB
/
package.json
File metadata and controls
55 lines (55 loc) ยท 1.93 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
{
"name": "prepare_frontend_interview",
"version": "1.0.2",
"description": "ํ๋ก ํธ์๋ ๊ฐ๋ฐ์์ ์ธํฐ๋ทฐ ์ค๋น๋ฅผ ์ํ ๋ ํฌ์งํ ๋ฆฌ์
๋๋ค. ",
"keywords": [
"frontend",
"interview",
"javascript",
"computer science"
],
"homepage": "https://github.com/junh0328/prepare_frontend_interview#readme",
"bugs": {
"url": "https://github.com/junh0328/prepare_frontend_interview/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/junh0328/prepare_frontend_interview.git"
},
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"license": "ISC",
"author": "junhee lee",
"type": "module",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"sync:docs": "node scripts/sync-docs.js",
"lint:md": "markdownlint js.md react.md cs.md html_css.md data_structure.md algorithm_data_structure.md",
"lint:md:fix": "markdownlint --fix js.md react.md cs.md html_css.md data_structure.md algorithm_data_structure.md",
"lint:links": "find . -maxdepth 1 -name '*.md' ! -name 'README.md' -exec markdown-link-check --config .markdown-link-check.json {} +",
"lint:sidebar": "node scripts/validate-sidebar.js",
"lint:external-links": "node scripts/check-external-links.js",
"check": "pnpm run format:check && pnpm run lint:md && pnpm run lint:links && pnpm run lint:sidebar",
"format": "prettier --write '*.md'",
"format:check": "prettier --check '*.md'",
"docs:dev": "vitepress dev docs",
"docs:build": "pnpm run sync:docs && vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.5.0",
"husky": "^9.1.7",
"markdown-link-check": "^3.14.2",
"markdownlint-cli": "^0.48.0",
"prettier": "^3.8.1",
"vitepress": "^1.6.4"
}
}