@redsift/dashboard 6.1.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,103 @@
1
+ {
2
+ "author": {
3
+ "name": "Red Sift"
4
+ },
5
+ "bugs": {
6
+ "url": "https://github.com/redsift/design-system/issues"
7
+ },
8
+ "description": "Dashboard component library as part of Red Sift's Design System. This package is based on dc.js and crossfilter2 libraries.",
9
+ "homepage": "https://github.com/redsift/design-system",
10
+ "license": "MIT",
11
+ "main": "index.js",
12
+ "module": "index.js",
13
+ "name": "@redsift/dashboard",
14
+ "publishConfig": {
15
+ "directory": "dist"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/redsift/design-system"
20
+ },
21
+ "sideEffects": false,
22
+ "scripts": {
23
+ "build": "rollup -c",
24
+ "check-types": "tsc && tsc-strict",
25
+ "lint": "eslint --ext .js,.jsx,.ts,.tsx src/",
26
+ "prepare": "install-peers || exit 0",
27
+ "prepublishOnly": "yarn build",
28
+ "test": "NODE_ENV=test jest --verbose"
29
+ },
30
+ "types": "types.d.ts",
31
+ "version": "6.1.0-alpha.0",
32
+ "dependencies": {
33
+ "@emotion/react": "^11.10.4",
34
+ "@emotion/styled": "^11.10.4",
35
+ "@redsift/charts": "^6.1.0-alpha.0",
36
+ "@redsift/table": "^6.1.0-alpha.0",
37
+ "d3-shape": "^3.1.0"
38
+ },
39
+ "devDependencies": {
40
+ "@babel/core": "^7.8.3",
41
+ "@babel/plugin-proposal-class-properties": "^7.16.7",
42
+ "@babel/plugin-proposal-export-default-from": "^7.16.7",
43
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
44
+ "@babel/plugin-proposal-object-rest-spread": "^7.17.3",
45
+ "@babel/plugin-proposal-optional-chaining": "^7.16.7",
46
+ "@babel/plugin-proposal-private-methods": "^7.16.11",
47
+ "@babel/plugin-proposal-private-property-in-object": "^7.16.7",
48
+ "@babel/preset-env": "^7.17.10",
49
+ "@babel/preset-react": "^7.17.12",
50
+ "@babel/preset-typescript": "^7.16.7",
51
+ "@rollup/plugin-babel": "^6.0.2",
52
+ "@rollup/plugin-commonjs": "^22.0.0",
53
+ "@rollup/plugin-node-resolve": "^13.3.0",
54
+ "@storybook/addon-a11y": "^6.5.6",
55
+ "@storybook/addon-essentials": "^6.5.3",
56
+ "@storybook/addon-interactions": "^6.5.3",
57
+ "@storybook/addon-links": "^6.5.3",
58
+ "@storybook/addon-storyshots": "^6.5.8",
59
+ "@storybook/react": "^6.5.3",
60
+ "@testing-library/jest-dom": "^5.16.4",
61
+ "@testing-library/react": "^13.3.0",
62
+ "@testing-library/user-event": "^14.2.1",
63
+ "@types/crossfilter": "^0.0.34",
64
+ "@types/d3": "^7.4.0",
65
+ "@types/d3-shape": "^3.1.0",
66
+ "@types/dc": "^0.0.29",
67
+ "@types/jest": "^27.5.1",
68
+ "@types/react": "18.0.12",
69
+ "@types/react-dom": "18.0.5",
70
+ "@types/styled-components": "^5.1.25",
71
+ "@typescript-eslint/eslint-plugin": "^5.28.0",
72
+ "@typescript-eslint/parser": "^5.26.0",
73
+ "crossfilter2": "^1.5.4",
74
+ "dc": "^4.2.7",
75
+ "identity-obj-proxy": "^3.0.0",
76
+ "install-peers-cli": "^2.2.0",
77
+ "jest": "^28.1.0",
78
+ "jest-environment-jsdom": "^29.3.0",
79
+ "msw": "^0.47.4",
80
+ "react": "18.1.0",
81
+ "react-dom": "18.1.0",
82
+ "rollup": "^2.72.1",
83
+ "rollup-plugin-analyzer": "^4.0.0",
84
+ "rollup-plugin-auto-external": "^2.0.0",
85
+ "rollup-plugin-cleaner": "^1.0.0",
86
+ "rollup-plugin-copy": "^3.4.0",
87
+ "rollup-plugin-dts": "^5.0.0",
88
+ "rollup-plugin-execute": "^1.1.0",
89
+ "rollup-plugin-ts-paths-resolve": "^1.7.1",
90
+ "rollup-plugin-typescript-paths": "^1.3.1",
91
+ "storybook-addon-styled-component-theme": "^2.0.0",
92
+ "styled-components": "^5.3.5",
93
+ "ts-jest": "^28.0.3"
94
+ },
95
+ "peerDependencies": {
96
+ "crossfilter2": "^1.5.4",
97
+ "dc": "^4.2.7",
98
+ "react": "18",
99
+ "react-dom": "18",
100
+ "styled-components": "^5.3.3"
101
+ },
102
+ "gitHead": "cbf71715865796ec3f73f017709f6635be4a8091"
103
+ }