-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
80 lines (80 loc) · 2.27 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
{
"name": "@vectara/react-chatbot",
"version": "3.0.1",
"description": "A Vectara-powered Chatbot 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",
"clean": "rimraf lib",
"lint": "eslint .",
"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-chatbot/",
"repository": {
"type": "git",
"url": "https://github.com/vectara/react-chatbot"
},
"keywords": [
"vectara",
"chat",
"chatbot",
"component",
"widget"
],
"dependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@vectara/stream-query-client": "^3.2.0",
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"prismjs": "^1.29.0",
"react-focus-on": "^3.9.1",
"uuid-by-string": "^4.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/prismjs": "^1.26.3",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"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",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.33.2",
"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",
"prettier": "2.8.3",
"react": ">= 17.0.2",
"react-dom": ">= 17.0.2",
"react-icons": "^5.0.1",
"react-jsx-parser": "^1.29.0",
"react-router-dom": "^6.8.2",
"rimraf": "^5.0.5",
"shadow-dom-testing-library": "^1.11.2",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"markdown-to-jsx": "^7.3.2",
"react": ">= 17.0.2",
"react-dom": ">= 17.0.2"
}
}