forked from grubersjoe/react-activity-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.54 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
{
"name": "react-activity-calendar",
"version": "1.3.2",
"description": " A 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",
"module": "build/index.es.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"build:storybook": "build-storybook -o docs/",
"format": "prettier --write './*' 'src/**/*'",
"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": "npm run lint && npm run build",
"start": "rollup -c -w",
"storybook": "start-storybook -p 6006"
},
"dependencies": {
"date-fns": "^2.23.0",
"tinycolor2": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@storybook/addon-essentials": "~6.3.6",
"@storybook/addon-links": "~6.3.6",
"@storybook/addons": "~6.3.6",
"@storybook/react": "~6.3.6",
"@storybook/theming": "~6.3.6",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-tooltip": "^4.2.4",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-docgen": "^5.4.0",
"react-dom": "^17.0.2",
"rollup": "^2.55.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-filesize": "^9.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-url": "^3.0.1",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-tooltip": "^17.0.0"
},
"resolutions": {
"@types/react": "^17.0.0"
},
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version"
]
}