-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.08 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
{
"name": "docusaurus-plugin-mindmap",
"version": "0.1.4",
"description": "",
"main": "lib/index.js",
"scripts": {
"start": "ts-node scripts/build.ts",
"build": "ts-node scripts/build.ts --build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiguaxigua/docusaurus-plugin-mindmap.git"
},
"keywords": [],
"author": "xingguang",
"license": "MIT",
"bugs": {
"url": "https://github.com/xiguaxigua/docusaurus-plugin-mindmap/issues"
},
"homepage": "https://github.com/xiguaxigua/docusaurus-plugin-mindmap#readme",
"devDependencies": {
"@docusaurus/core": "^2.0.0-beta.15",
"@docusaurus/module-type-aliases": "^2.0.0-beta.15",
"@docusaurus/preset-classic": "^2.0.0-beta.15",
"@docusaurus/theme-translations": "^2.0.0-beta.15",
"@rollup/plugin-typescript": "^8.3.0",
"@types/babel__standalone": "^7.1.4",
"@types/codemirror": "^5.60.5",
"@types/node": "^17.0.14",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"autoprefixer": "^10.4.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.28.0",
"husky": ">=6",
"lint-staged": ">=10",
"node-watch": "^0.7.3",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.67.0",
"rollup-plugin-postcss": "^4.0.2",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"vue": "^2",
"webpack": "^5.68.0"
},
"browserslist": [
"last 1 version",
"> 1%",
"IE 10"
],
"dependencies": {
"jsmind": "^0.4.6"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.css": [
"prettier --write"
]
}
}