-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
118 lines (118 loc) · 2.98 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
{
"name": "@datashaper/react",
"version": "21.0.0",
"type": "module",
"main": "src/index.ts",
"publishConfig": {
"main": "dist/index.js",
"types": "dist/index.d.ts"
},
"sideEffects": false,
"author": "Nathan Evans <[email protected]>",
"license": "MIT",
"contributors": [
"Nathan Evans <[email protected]>",
"Dayenne Souza <[email protected]>",
"Andres Morales <[email protected]>",
"Monica Carvajal <[email protected]>",
"Chris Trevino <[email protected]>",
"Derek Worthen <[email protected]>",
"Gaudy Blanco <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/datashaper"
},
"bugs": {
"url": "https://github.com/microsoft/datashaper/issues"
},
"scripts": {
"clean": "essex clean dist docs",
"build": "essex build --docs --skipExportCheck",
"fix": "essex fix --strict --formatter none",
"check": "essex check --strict --formatter none",
"check-deps": "essex check-deps",
"release": "yarn npm publish --tolerate-republish --access public"
},
"dependencies": {
"@datashaper/guidance": "workspace:^",
"@datashaper/schema": "workspace:^",
"@datashaper/tables": "workspace:^",
"@datashaper/utilities": "workspace:^",
"@datashaper/workflow": "workspace:^",
"@essex/charts-react": "^1.1.12",
"@essex/components": "^4.2.0",
"@essex/styled-components": "^0.0.13",
"ahooks": "^3.7.7",
"d3-format": "^3.1.0",
"immer": "^10.0.3",
"lodash-es": "^4.17.21",
"observable-hooks": "^4.2.3",
"react-if": "^4.1.4",
"rxjs": "^7.8.1",
"tslib": "^2.5.3"
},
"devDependencies": {
"@essex/scripts": "^24.0.5",
"@essex/tsconfig-base": "^2.0.0",
"@fluentui/react": "^8.110.2",
"@fluentui/react-hooks": "^8.6.27",
"@fluentui/utilities": "^8.13.16",
"@thematic/core": "^4.0.7",
"@thematic/d3": "^2.0.22",
"@thematic/fluent": "^5.0.8",
"@thematic/react": "^2.1.9",
"@types/d3-format": "^3.0.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.2.5",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.25",
"@types/styled-components": "^5.1.26",
"arquero": "^5.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"styled-components": "^5.3.11",
"typescript": "^5.1.3"
},
"peerDependencies": {
"@fluentui/react": ">= 8",
"@fluentui/react-hooks": ">= 8",
"@fluentui/utilities": ">= 8",
"@thematic/core": ">= 4",
"@thematic/d3": ">= 2",
"@thematic/fluent": ">= 5",
"@thematic/react": ">= 2",
"arquero": ">= 5",
"react": ">= 18",
"react-dom": ">= 18",
"react-is": ">= 18",
"styled-components": ">= 5"
},
"peerDependenciesMeta": {
"@fluentui/react": {
"optional": false
},
"@fluentui/react-hooks": {
"optional": false
},
"@fluentui/utilities": {
"optional": true
},
"@thematic/core": {
"optional": false
},
"@thematic/fluent": {
"optional": false
},
"@thematic/react": {
"optional": false
},
"arquero": {
"optional": false
},
"react": {
"optional": false
}
}
}