-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "assistant-dashboards",
"version": "2.9.0.0",
"main": "index.ts",
"license": "Apache-2.0",
"scripts": {
"osd": "node ../../scripts/osd",
"build": "yarn plugin-helpers build",
"test": "../../node_modules/.bin/jest --config ./test/jest.config.js",
"plugin-helpers": "node ../../scripts/plugin_helpers",
"prepare": "husky install",
"lint:es": "node ../../scripts/eslint",
"lint": "yarn lint:es"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn lint --fix"
]
},
"dependencies": {
"autosize": "^6.0.1",
"dompurify": "^2.4.1",
"jsdom": "^22.1.0",
"langchain": "^0.0.164",
"postinstall": "^0.7.4",
"web-streams-polyfill": "^3.2.1"
},
"devDependencies": {
"@types/autosize": "^4.0.1",
"@types/dompurify": "^2.3.3",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jsdom": "^21.1.2",
"@types/react-test-renderer": "^16.9.1",
"eslint": "^6.8.0",
"husky": "6.0.0",
"jest-dom": "^4.0.0",
"lint-staged": "^13.1.0",
"ts-jest": "^29.1.0"
},
"eslintIgnore": [
"node_modules/*",
"target/*"
]
}