-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
80 lines (80 loc) · 2.58 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
{
"name": "calendar-widgets",
"version": "0.0.14",
"description": "Craft beautifully robust date components in React.",
"main": "./dist/bundle.js",
"type": "module",
"module": "./dist/bundle.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"styles",
"LICENSE"
],
"scripts": {
"lint": "eslint -c .eslintrc.cjs ./src --ext .ts,.tsx",
"lint:debug": "eslint -c .eslintrc.cjs ./src --ext .ts,.tsx --debug",
"lint:fix": "eslint ./src --ext .ts,.tsx --fix",
"build": "rimraf ./dist && rollup -c ./rollup.config.prod.js",
"dev": "rimraf ./dist && rollup -c ./rollup.config.dev.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"clean:docs": "cd docs && rimraf .docusaurus node_modules pnpm-lock.yaml build && pnpm install",
"dev:docs": "pnpm run dev && pnpm run clean:docs && cd docs && pnpm run start"
},
"keywords": [
"calendar",
"calendar SDK",
"calendar widgets"
],
"peerDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@calendar-widgets/eslint-config": "^0.0.13",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@storybook/addon-essentials": "^7.0.5",
"@storybook/addon-interactions": "^7.0.5",
"@storybook/addon-links": "^7.0.5",
"@storybook/blocks": "^7.0.5",
"@storybook/react": "^7.0.5",
"@storybook/react-webpack5": "^7.0.5",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/react": "^18.0.35",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "8.38.0",
"eslint-plugin-storybook": "^0.6.11",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.0",
"rollup": "^3.20.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-summary": "^2.0.0",
"storybook": "^7.0.5",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/matthewbub/calendar-widgets"
},
"bugs": {
"url": "https://github.com/matthewbub/calendar-widgets/issues"
},
"homepage": "https://www.calendar-widgets.com/"
}