-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 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
{
"name": "mdn-local-search-server",
"version": "0.2.0",
"description": "Serve static content from mdn-local and search the contents",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --fix src",
"clean": "rimraf lib/*",
"tsc": "tsc",
"build": "npm run lint && npm run tsc && npm run copy",
"copy": "node copy-src.js",
"prepack": "npm run clean && npm run build",
"postshrinkwrap": "node package-lock-resolved.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/website-local/mdn-local-search-server.git"
},
"dependencies": {
"@elastic/elasticsearch": "^7.10.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"cheerio": "^1.0.0-rc.5",
"fast-glob": "^3.2.2",
"koa-static": "^5.0.0",
"log4js": "^6.3.0",
"typescript": "^4.1.3",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.23",
"@types/koa": "^2.11.6",
"@types/koa-static": "^4.0.1",
"@types/yargs": "^15.0.12",
"elastic-ts": "^0.5.0",
"eslint": "^7.16.0",
"koa": "^2.12.0",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"koa": "^2.12.0"
},
"keywords": [],
"author": "",
"license": "ISC"
}