-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.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
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
{
"name": "metrics-widget",
"version": "1.9.2",
"description": "Display book usage metrics",
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"clean": "rm -rf ./dist",
"lint": "eslint --ext .js lib/",
"dist": "yarn clean && NODE_ENV=production yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenBookPublishers/metrics-widget.git"
},
"keywords": [
"metrics",
"book metrics",
"chart"
],
"author": "Joi Mizushima <[email protected]>",
"contributors": [
"Javier Arias <[email protected]"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenBookPublishers/metrics-widget/issues"
},
"homepage": "https://github.com/OpenBookPublishers/metrics-widget#readme",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@babel/preset-react": "^7.18.6",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^29.0.2",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.16",
"postcss-loader": "^7.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.1.8",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"peerDependencies": {
"react": "^17.0.X || ^18.2.x",
"react-dom": "^17.0.X || ^18.2.x"
},
"dependencies": {
"@headlessui/react": "^1.7.0",
"@heroicons/react": "^2.0.10",
"chart.js": "^3.9.1",
"core-js": "^3.25.0",
"doi-prop-type": "^1.1.0",
"dompurify": "^2.4.0",
"file-saver": "^2.0.5",
"prop-types": "^15.8.1",
"react-chartjs-2": "^4.3.1",
"react-json-to-csv": "^1.0.4",
"regenerator-runtime": "^0.13.9",
"spinners-react": "^1.0.7",
"url-prop-type": "^1.2.4"
}
}