-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.46 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
{
"name": "rbm-viz",
"version": "2.1.0",
"description": "web-based data visualization for risk-based monitoring",
"module": "src/main.js",
"main": "index.js",
"scripts": {
"build": "npm run bundle && npm run format && npm run transpile && npm run test && npm run link-bundles",
"bundle": "esbuild src/main.js --banner:js=\"'use strict'\" --bundle --global-name=rbmViz --outfile=index.js --sourcemap",
"deploy": "gh-pages -d examples",
"format": "npm run format-src && npm run format-examples && npm run format-tests",
"format-examples": "npx prettier --single-quote --tab-width=4 --write examples",
"format-src": "npx prettier --single-quote --tab-width=4 --write src",
"format-tests": "npx prettier --single-quote --tab-width=4 --write tests",
"link-bundles": "rm examples/index.j* && ln index.j* examples",
"local": "live-server --ignore=app,examples/app,examples/data,node_modules,react-app,src .",
"test": "jest",
"test:coverage": "jest --coverage",
"test-pattern": "jest --transformIgnorePatterns \"node_modules/(?!@rbmViz)/\" --env=jsdom",
"transpile": "babel index.js > index.es5.js",
"update-data": "node examples/data/helpers/csv-to-json.js",
"watch": "esbuild src/main.js --bundle --global-name=rbmViz --outfile=index.js --sourcemap --watch"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/Gilead-BioStats/rbm-viz.git"
},
"keywords": [
"rbm",
"rbqm",
"risk-based",
"monitoring",
"data",
"visualization"
],
"author": "Gilead Sciences",
"license": "ISC",
"bugs": {
"url": "/~https://github.com/Gilead-BioStats/rbm-viz/issues"
},
"homepage": "/~https://github.com/Gilead-BioStats/rbm-viz#readme",
"dependencies": {
"@sgratzl/chartjs-chart-boxplot": "^3.10.0",
"chart.js": "^3.9.1",
"chartjs-plugin-annotation": "^2.0.1",
"chartjs-plugin-datalabels": "^2.1.0",
"d3": "^7.6.1",
"html-react-parser": "^5.1.0",
"react": "^18.2.0",
"react-chartjs-2": "^4.3.1",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-jest": "^29.1.2",
"csvtojson": "^2.0.10",
"esbuild": "^0.19.12",
"gh-pages": "^4.0.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.1.2",
"jsdoc": "^3.6.11",
"live-server": "^1.2.2",
"prettier": "^2.7.1"
}
}