-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.23 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
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
{
"name": "web-interview",
"version": "1.0.0",
"description": "web 面试题目汇总",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start --host 0.0.0.0",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "./scripts/deploy.sh",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"test": "mocha -t 10000 -w docs/**/07-coding/*.test.js",
"lint": "git diff --cached --name-only --diff-filter=ACM | xargs eslint",
"prepare": "husky",
"demo:tfo": "node docs/network/tcp/examples/tfo.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenHeart/web-interview.git"
},
"keywords": [
"interview",
"web"
],
"author": "zenheart",
"license": "ISC",
"bugs": {
"url": "https://github.com/zenHeart/web-interview/issues"
},
"homepage": "https://github.com/zenHeart/web-interview#readme",
"devDependencies": {
"@docusaurus/module-type-aliases": "3.7.0",
"@docusaurus/tsconfig": "3.7.0",
"@docusaurus/types": "3.7.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^4.2.0",
"eslint": "^8.5.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-mocha": "^10.5.0",
"husky": "^9.1.6",
"lerna": "^3.14.1",
"mocha": "^7.0.1",
"typescript": "~5.6.2",
"virtual-dom": "^2.1.1"
},
"dependencies": {
"@docusaurus/core": "3.7.0",
"@docusaurus/faster": "^3.7.0",
"@docusaurus/preset-classic": "3.7.0",
"@docusaurus/theme-live-codeblock": "^3.7.0",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.0.0",
"js-yaml": "^4.1.0",
"prism-react-renderer": "^2.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"engines": {
"node": ">=18.0"
}
}