This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.43 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
77
78
79
80
81
82
{
"name": "react-github-heatmap",
"version": "1.0.7",
"description": " A plugable React component to display a general purpose GitHub-like contributions graph",
"author": "Marcelo Cardoso <[email protected]>",
"license": "MIT",
"homepage": "https://marcelovicentegc.github.io/react-github-heatmap/",
"repository": "marcelovicentegc/react-github-heatmap",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"deploy": "sh deploy.sh",
"format": "prettier --write './*' 'src/**/*' 'example/**/*'",
"lint": "eslint 'src/**/*' 'example/**/*'",
"predeploy": "cd example && yarn install && yarn run build && gh-pages-clean",
"prepare": "yarn run build",
"start": "rollup -c -w",
"test:watch": "react-scripts test --env=jsdom",
"test": "cross-env CI=1 react-scripts test --env=jsdom"
},
"dependencies": {
"date-fns": "^2.9.0",
"tinycolor2": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/tinycolor2": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"gh-pages": "^2.2.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "^3.3.1",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^2.0.6",
"rollup-plugin-url": "^3.0.1",
"typescript": "^3.7.5"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-tooltip": "^3.9.0"
},
"files": [
"dist"
],
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version"
],
"keywords": [
"react",
"github",
"contributions",
"calendar",
"heatmap",
"component",
"svg",
"frontend"
]
}