forked from grubersjoe/react-activity-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-activity-calendar",
"version": "2.5.1",
"description": "React component to display activity data in calendar",
"author": "Jonathan Gruber <gruberjonathan@gmail.com>",
"license": "MIT",
"homepage": "https://grubersjoe.github.io/react-activity-calendar/",
"repository": {
"type": "git",
"url": "git+https://github.com/grubersjoe/react-activity-calendar.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"build:storybook": "storybook build -o docs/ && touch docs/.nojekyll",
"ci": "npx tsc && npm run lint && npm run test",
"dev": "storybook dev -p 9000",
"format": "prettier --write .",
"lint": "eslint .",
"postbuild": "dts-bundle-generator src/index.tsx -o build/index.d.ts --no-check --no-banner --external-imports react tinycolor2 date-fns",
"prepublishOnly": "npx tsc && npm run lint && npm run build",
"start": "rollup -c -w",
"test": "jest"
},
"dependencies": {
"@types/chroma-js": "^2.4.3",
"chroma-js": "^2.4.2",
"date-fns": "^3.6.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.5",
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.9.0",
"@mui/material": "^5.16.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@storybook/addon-docs": "^8.2.8",
"@storybook/addon-essentials": "^8.2.8",
"@storybook/addon-links": "^8.2.8",
"@storybook/blocks": "^8.2.8",
"@storybook/builder-vite": "^8.2.8",
"@storybook/react": "^8.2.8",
"@storybook/react-vite": "^8.2.8",
"@storybook/theming": "^8.2.8",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.1",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.9.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"globals": "^15.6.0",
"jest": "^29.7.0",
"postcss": "^8.4.41",
"prettier": "^3.3.2",
"prism-react-renderer": "^2.3.1",
"react": "^18.3.1",
"react-docgen": "^7.0.3",
"react-dom": "^18.3.1",
"react-syntax-highlighter": "^15.5.0",
"react-tooltip": "^5.27.0",
"rollup": "^4.18.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.2.8",
"storybook-dark-mode": "^4.0.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.0",
"vite-plugin-replace": "^0.1.1"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"browserslist": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}