forked from grubersjoe/react-activity-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.09 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
{
"name": "react-activity-calendar",
"version": "2.2.8",
"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": "grubersjoe/react-activity-calendar",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"build:storybook": "storybook build -o docs/",
"ci": "npx tsc && npm run lint && npm run test",
"format": "prettier --write './*' 'src/**/*' '.storybook/**/*'",
"lint": "eslint 'src/**/*' --max-warnings=0",
"postbuild": "dts-bundle-generator src/index.ts -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",
"storybook": "storybook dev -p 9000",
"test": "jest"
},
"dependencies": {
"@types/chroma-js": "^2.4.3",
"chroma-js": "^2.4.2",
"date-fns": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.15.10",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@storybook/addon-docs": "^7.6.17",
"@storybook/addon-essentials": "~7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addons": "~7.6.17",
"@storybook/blocks": "^7.6.17",
"@storybook/react": "~7.6.17",
"@storybook/react-webpack5": "~7.6.17",
"@storybook/theming": "~7.6.17",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.10",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.18",
"@types/react-syntax-highlighter": "^15.5.10",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"babel-loader": "^9.1.3",
"css-loader": "^6.9.0",
"dts-bundle-generator": "^9.2.4",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"postcss": "^8.4.33",
"prettier": "^3.2.1",
"react": "^18.2.0",
"react-docgen": "^7.0.3",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"react-tooltip": "^5.26.3",
"rollup": "^4.12.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",
"sass": "^1.71.0",
"sass-loader": "^14.1.1",
"storybook": "~7.6.17",
"storybook-dark-mode": "^3.0.3",
"string-replace-loader": "^3.1.0",
"style-loader": "^3.3.4",
"typescript": "^5.3.2"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"browserslist": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}