forked from tremorlabs/tremor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
146 lines (146 loc) · 4.32 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "@tremor/react",
"version": "0.0.0-development",
"description": "The React library to build dashboards faster.",
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,types,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"tests": "jest",
"fix-lint": "eslint . --ext .ts --ext .tsx --fix",
"build-storybook": "storybook build",
"semantic-release": "semantic-release",
"storybook": "storybook dev -p 6006"
},
"repository": {
"type": "git",
"url": "https://github.com/tremorlabs/tremor.git"
},
"author": "tremor",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/tremorlabs/tremor/issues"
},
"homepage": "https://github.com/tremorlabs/tremor#readme",
"dependencies": {
"@floating-ui/react": "^0.19.2",
"@headlessui/react": "^1.7.18",
"@headlessui/tailwindcss": "^0.2.0",
"date-fns": "^2.30.0",
"react-day-picker": "^8.9.1",
"react-transition-state": "^2.1.1",
"recharts": "^2.10.3",
"tailwind-merge": "^1.14.0"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@mdx-js/react": "^2.3.0",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^8.5.0",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "github:semantic-release/github",
"@semantic-release/npm": "github:semantic-release/npm",
"@storybook/addon-a11y": "^7.6.3",
"@storybook/addon-actions": "^7.6.3",
"@storybook/addon-essentials": "^7.6.3",
"@storybook/addon-interactions": "^7.6.3",
"@storybook/addon-links": "^7.6.3",
"@storybook/addon-styling-webpack": "^0.0.5",
"@storybook/addon-themes": "^7.6.3",
"@storybook/manager-api": "^7.6.3",
"@storybook/mdx2-csf": "^1.1.0",
"@storybook/react": "^7.6.3",
"@storybook/react-webpack5": "^7.6.3",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.6.3",
"@tailwindcss/forms": "^0.5.7",
"@testing-library/react": "^14.1.2",
"@types/jest": "^27.5.2",
"@types/node": "^20.10.2",
"@types/react": "^18.2.41",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"autoprefixer": "^10.4.16",
"babel-jest": "^27.5.1",
"babel-loader": "^8.3.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.3",
"prettier": "3.0.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"resize-observer-polyfill": "^1.5.1",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-preserve-directives": "^0.1.1",
"rollup-plugin-typescript-paths": "^1.4.0",
"semantic-release": "^22.0.8",
"storybook": "^7.6.3",
"storybook-source-link": "^4.0.1",
"style-loader": "^3.3.3",
"tailwindcss": "^3.4.1",
"tslib": "^2.6.2",
"typescript": "^4.9.5",
"webpack": "^5.89.0"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": ">=16.6.0"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
},
{
"name": "beta-*",
"prerelease": true
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"release": "minor"
}
]
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}