-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
Copy pathpackage.json
85 lines (85 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
81
82
83
84
85
{
"name": "@fluentui/react-charting",
"version": "5.23.44",
"description": "React web charting controls for Microsoft fluentui system.",
"main": "lib-commonjs/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"sideEffects": [
"lib/version.js"
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/fluentui"
},
"license": "MIT",
"scripts": {
"build": "just-scripts build",
"lint": "just-scripts lint",
"test": "cross-env TZ=UTC just-scripts test",
"just": "just-scripts",
"clean": "just-scripts clean",
"codepen": "node ../../../scripts/executors/src/local-codepen.js",
"code-style": "just-scripts code-style",
"start": "just-scripts dev:storybook",
"start:legacy": "just-scripts dev",
"start-test": "just-scripts jest-watch",
"update-snapshots": "cross-env TZ=UTC just-scripts jest -u",
"test:tz": "node ./scripts/run-tests-in-timezone.js"
},
"devDependencies": {
"@fluentui/eslint-plugin": "*",
"@fluentui/react": "*",
"@types/react-addons-test-utils": "0.14.18",
"@fluentui/jest-serializer-merge-styles": "*",
"@fluentui/scripts-api-extractor": "*",
"@fluentui/scripts-jest": "*",
"@fluentui/scripts-tasks": "*",
"@fluentui/scripts-webpack": "*",
"jest-canvas-mock": "2.4.0"
},
"dependencies": {
"@fluentui/react-focus": "^8.9.20",
"@fluentui/theme-samples": "^8.7.197",
"@microsoft/load-themed-styles": "^1.10.26",
"@types/d3-array": "^3.0.0",
"@types/d3-axis": "^3.0.0",
"@types/d3-format": "^3.0.0",
"@types/d3-hierarchy": "^3.0.0",
"@types/d3-sankey": "^0.12.3",
"@types/d3-scale": "^4.0.0",
"@types/d3-selection": "^3.0.0",
"@types/d3-shape": "^3.0.0",
"@types/d3-time-format": "^3.0.0",
"@types/d3-time": "^3.0.0",
"@types/d3-color": "^3.0.0",
"@fluentui/set-version": "^8.2.23",
"d3-array": "^3.0.0",
"d3-axis": "^3.0.0",
"d3-format": "^3.0.0",
"d3-hierarchy": "^3.0.0",
"d3-sankey": "^0.12.3",
"d3-scale": "^4.0.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.0.0",
"d3-time-format": "^3.0.0",
"d3-time": "^3.0.0",
"d3-color": "^3.0.0",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@fluentui/react": "^8.122.8",
"@types/react": ">=16.8.0 <19.0.0",
"@types/react-dom": ">=16.8.0 <19.0.0",
"react": ">=16.8.0 <19.0.0",
"react-dom": ">=16.8.0 <19.0.0"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib-commonjs/index.js"
},
"./README.md": "./README.md"
}
}