forked from easyops-cn/docusaurus-search-local
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.71 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.71 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
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
82
{
"name": "@thinkbucket/docusaurus-search-local",
"version": "0.20.0-0",
"description": "An offline/local search plugin for Docusaurus v2.",
"repository": "https://github.com/thinkbucket/docusaurus-search-local",
"homepage": "https://github.com/thinkbucket/docusaurus-search-local",
"scripts": {
"test": "jest",
"start": "concurrently -k -n client,server \"npm run start:client\" \"npm run start:server\"",
"start:client": "tsc --watch --project tsconfig.client.json",
"start:server": "tsc --watch --project tsconfig.server.json",
"prebuild": "rimraf dist",
"build": "npm run build:client && npm run build:server",
"build:client": "tsc --project tsconfig.client.json",
"build:server": "tsc --project tsconfig.server.json",
"postbuild": "copyfiles -u 3 \"src/client/theme/**/*.css\" dist/client/client/theme",
"release": "standard-version"
},
"main": "dist/server/server/index.js",
"files": [
"/dist",
"!/dist/generated.js"
],
"engines": {
"node": ">=12"
},
"license": "MIT",
"dependencies": {
"@docusaurus/utils": "^2.0.0-beta.4",
"@docusaurus/utils-validation": "^2.0.0-beta.4",
"@easyops-cn/autocomplete.js": "^0.38.1",
"cheerio": "^1.0.0-rc.3",
"clsx": "^1.1.1",
"debug": "^4.2.0",
"fs-extra": "^9.0.1",
"klaw-sync": "^6.0.0",
"lunr": "^2.3.9",
"lunr-languages": "^1.4.0",
"mark.js": "^8.11.1",
"tslib": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@docusaurus/module-type-aliases": "^2.0.0-beta.4",
"@tsconfig/docusaurus": "^1.0.2",
"@types/debug": "^4.1.5",
"@types/enzyme": "^3.10.7",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/fs-extra": "^9.0.2",
"@types/jest": "^26.0.14",
"@types/klaw-sync": "^6.0.0",
"@types/lunr": "^2.3.3",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.1.0",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-jest": "^26.5.2",
"concurrently": "^6.0.0",
"copyfiles": "^2.4.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.5.3",
"lint-staged": "^10.4.1",
"nodejieba": "^2.4.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0",
"typescript": "^4.0.3"
}
}