-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
42 lines (42 loc) · 1005 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
36
37
38
39
40
41
42
{
"name": "react-github-contribution-calendar",
"version": "2.2.0",
"description": "React component for github-like calendar",
"main": "./lib/index.js",
"scripts": {
"build": "npm run lib:build && npm run example:build",
"lib:build": "tsc -p .",
"example:build": "cd example && webpack",
"example:watch": "cd example && webpack -w"
},
"keywords": [
"react",
"github",
"calendar"
],
"author": "haripo",
"license": "MIT",
"files": [
"lib"
],
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@types/react": "^18.0.25",
"@types/react-measure": "^2.0.8",
"babel-loader": "^9.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.8.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"dayjs": "^1.11.6",
"react-measure": "^2.5.2"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18"
}
}