-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
104 lines (104 loc) · 3.22 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
98
99
100
101
102
103
104
{
"name": "react-activity-calendar",
"version": "2.7.8",
"description": "React component to display activity data in calendar",
"author": "Jonathan Gruber <[email protected]>",
"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",
"bundlesize": "pnpm install && EXTERNAL_DEPS=false pnpm build && open bundle.html",
"check": "pnpx prettier -c . && pnpm exec tsc && pnpm lint",
"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 date-fns",
"prepublishOnly": "pnpm check && pnpm build",
"start": "rollup -c -w",
"test": "jest",
"prepare": "husky"
},
"dependencies": {
"date-fns": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.25.7",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.19.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@mui/material": "^6.4.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.1",
"@storybook/addon-docs": "^8.5.1",
"@storybook/addon-essentials": "^8.5.1",
"@storybook/addon-links": "^8.5.1",
"@storybook/blocks": "^8.5.1",
"@storybook/builder-vite": "^8.5.1",
"@storybook/react": "^8.5.1",
"@storybook/react-vite": "^8.5.1",
"@storybook/theming": "^8.5.1",
"@types/eslint__js": "^8.42.3",
"@types/react": "^19.0.8",
"@vitejs/plugin-react": "^4.3.4",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-docgen": "^7.1.0",
"react-ga4": "^2.1.0",
"react-tooltip": "^5.27.0",
"rollup": "^4.32.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.5.1",
"storybook-dark-mode": "^4.0.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.21.0",
"vite": "^6.0.11",
"vite-plugin-replace": "^0.1.1"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"pnpm": {
"overrides": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
},
"jest": {
"testEnvironment": "jsdom"
},
"browserslist": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}