-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.95 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
{
"name": "@vectara/react-search",
"version": "1.2.0",
"description": "A Vectara-powered Search component",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run clean && node build.js && tsc --emitDeclarationOnly --outDir lib",
"buildDocs": "node docs/build.js",
"clean": "rimraf lib",
"test": "jest --coverage",
"docs": "npm install && npm run build && npm install --prefix docs && npm run docs --prefix docs"
},
"author": {
"name": "Vectara, Inc.",
"url": "https://www.vectara.com"
},
"license": "Apache-2.0",
"homepage": "https://vectara.github.io/react-search/",
"repository": {
"type": "git",
"url": "https://github.com/vectara/react-search"
},
"keywords": [
"vectara",
"search",
"semantic",
"component",
"widget"
],
"dependencies": {
"@testing-library/react-hooks": "^8.0.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"prismjs": "^1.29.0",
"react-focus-on": "^3.9.1",
"shadow-dom-testing-library": "^1.11.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^12.1.5",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/prismjs": "^1.26.3",
"chokidar": "^3.5.3",
"cross-fetch": "^4.0.0",
"esbuild": "^0.19.9",
"esbuild-css-modules-plugin": "^3.1.0",
"esbuild-sass-plugin": "^2.16.0",
"jest": "^29.7.0",
"jest-css-modules": "^2.1.0",
"jest-environment-jsdom": "^29.7.0",
"live-server": "^1.2.2",
"markdown-to-jsx": "^7.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^5.0.1",
"react-router-dom": "^6.8.2",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": ">= 17.0.2",
"react-dom": ">= 17.0.2",
"uuid-by-string": "^4.0.0"
}
}