forked from tremorlabs/tremor-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.77 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
{
"name": "@tremor/react",
"version": "0.0.0-development",
"description": "The React library to build dashboards faster.",
"scripts": {
"rollup": "rollup -c",
"upgrade-patch": "npm version patch",
"upgrade-minor": "npm version minor",
"upgrade-major": "npm version major",
"tests": "jest",
"lint": "eslint . --ext .ts --ext .tsx",
"fix-lint": "eslint . --ext .ts --ext .tsx --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"semantic-release": "semantic-release"
},
"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": {
"@tippyjs/react": "^4.2.6",
"@tremor/react": "^1.0.12",
"date-fns": "^2.28.0",
"recharts": "^2.1.13"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@heroicons/react": "^1.0.6",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-typescript": "^8.3.2",
"@storybook/addon-actions": "^6.5.0-alpha.64",
"@storybook/addon-essentials": "^6.5.0-alpha.64",
"@storybook/addon-interactions": "^6.5.0-alpha.64",
"@storybook/addon-links": "^6.5.0-alpha.64",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.5.0-alpha.64",
"@storybook/testing-library": "^0.0.10",
"@testing-library/react": "^13.1.1",
"@types/jest": "^27.4.1",
"@types/react": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"autoprefixer": "^10.4.4",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.5",
"eslint": "^8.13.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"postcss": "^8.4.18",
"resize-observer-polyfill": "^1.5.1",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript-paths": "^1.3.1",
"semantic-release": "^19.0.5",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "^18.0.0"
},
"publishConfig": {
"access": "public"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
},
{
"name": "beta-*",
"prerelease": true
}
]
}
}