-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "assistant-dashboards",
"version": "3.0.0.0",
"main": "index.ts",
"license": "Apache-2.0",
"scripts": {
"osd": "node ../../scripts/osd",
"build": "yarn plugin-helpers build",
"test:jest": "../../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",
"csv-parser": "^3.0.0",
"dompurify": "^3.0.11",
"jsdom": "^21.1.2",
"postinstall": "^0.7.4"
},
"devDependencies": {
"@types/autosize": "^4.0.1",
"@types/dompurify": "^3.0.5",
"@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": "^8.0.0",
"jest-dom": "^4.0.0",
"lint-staged": "^13.1.0",
"ts-jest": "^29.1.0"
},
"eslintIgnore": [
"node_modules/*",
"target/*"
],
"resolutions": {
"braces": "^3.0.3",
"micromatch": "^4.0.8"
}
}