-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
35 lines (35 loc) · 944 Bytes
/
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
{
"name": "ml-commons-dashboards",
"license": "Apache-2.0",
"config": {
"id": "mlCommonsDashboards"
},
"version": "3.0.0.0",
"scripts": {
"build": "yarn plugin-helpers build",
"plugin-helpers": "node ../../scripts/plugin_helpers",
"osd": "node ../../scripts/osd",
"lint:es": "node ../../scripts/eslint",
"test:jest": "TZ=UTC ../../node_modules/.bin/jest --config ./test/jest.config.js",
"test:watch": "TZ=UTC ../../node_modules/.bin/jest --config ./test/jest.config.js --watch",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"hash-wasm": "^4.9.0",
"papaparse": "^5.3.2",
"react-hook-form": "^7.39.4",
"rxjs": "^6.5.5"
},
"devDependencies": {
"@testing-library/user-event": "^14.4.3",
"husky": "^8.0.0",
"@types/papaparse": "^5.3.5",
"lint-staged": "^10.0.0",
"msw": "^1.1.0"
}
}