-
Notifications
You must be signed in to change notification settings - Fork 568
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 5.14 KB
/
package.json
File metadata and controls
147 lines (147 loc) · 5.14 KB
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
147
{
"name": "@fluid-internal/devtools-view",
"version": "2.72.0",
"private": true,
"description": "Contains a visualization suite for use alongside the Fluid Devtools",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "packages/tools/devtools/devtools-view"
},
"license": "MIT",
"author": "Microsoft and contributors",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "fluid-build . --task build",
"build:compile": "fluid-build . --task compile",
"build:docs": "api-extractor run --local",
"build:esnext": "fluid-tsc module --project ./tsconfig.esm.json && copyfiles -f ../../../../common/build/build-common/src/esm/package.json ./lib",
"build:test": "concurrently npm:build:test:cjs npm:build:test:esm",
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
"build:test:esm": "fluid-tsc module --project ./src/test/tsconfig.esm.json",
"check:are-the-types-wrong": "attw --pack .",
"check:biome": "biome check .",
"check:exports": "api-extractor run --config ./api-extractor-lint.json",
"check:format": "npm run check:biome",
"ci:build:docs": "api-extractor run",
"clean": "rimraf --glob _api-extractor-temp coverage dist lib nyc \"**/*.tsbuildinfo\" \"**/*.build.log\"",
"eslint": "eslint --quiet src",
"eslint:fix": "eslint --quiet src --fix",
"format": "npm run format:biome",
"format-and-build": "npm run format && npm run build",
"format-and-compile": "npm run format && npm run build:compile",
"format:biome": "biome check . --write",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"rebuild": "npm run clean && npm run build",
"test": "npm run test:jest",
"test:coverage": "npm run test:jest:coverage",
"test:jest": "pnpm test:jest:cjs && echo skip per fluentui issue 30778 - pnpm test:jest:esm",
"test:jest:cjs": "jest --ci --roots ./dist",
"test:jest:coverage": "jest --coverage --ci",
"test:jest:esm": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --roots ./lib",
"test:jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:jest",
"tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../../common/build/build-common/src/cjs/package.json ./dist",
"tsc:watch": "copyfiles -f ../../../../common/build/build-common/src/cjs/package.json ./dist && fluid-tsc commonjs --watch --project ./tsconfig.cjs.json"
},
"dependencies": {
"@fluentui/react": "^8.109.4",
"@fluentui/react-components": "^9.47.5",
"@fluentui/react-hooks": "^8.6.24",
"@fluentui/react-icons": "^2.0.233",
"@fluid-internal/client-utils": "workspace:~",
"@fluidframework/container-definitions": "workspace:~",
"@fluidframework/container-loader": "workspace:~",
"@fluidframework/core-interfaces": "workspace:~",
"@fluidframework/datastore-definitions": "workspace:~",
"@fluidframework/devtools-core": "workspace:~",
"@fluidframework/driver-definitions": "workspace:~",
"@fluidframework/telemetry-utils": "workspace:~",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-split-pane": "^0.1.92",
"recharts": "^2.7.2",
"scheduler": "^0.20.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.1",
"@biomejs/biome": "~1.9.3",
"@fluid-internal/mocha-test-setup": "workspace:~",
"@fluid-tools/build-cli": "^0.58.3",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.58.3",
"@fluidframework/core-interfaces": "workspace:~",
"@fluidframework/datastore-definitions": "workspace:~",
"@fluidframework/eslint-config-fluid": "workspace:^",
"@fluidframework/shared-object-base": "workspace:~",
"@microsoft/api-extractor": "7.52.11",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "29.5.3",
"@types/mocha": "^10.0.10",
"@types/node": "^18.19.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/recharts": "^1.8.24",
"@types/testing-library__jest-dom": "^5.14.5",
"axe-core": "^4.9.1",
"chalk": "^4.1.2",
"concurrently": "^8.2.1",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "~8.57.1",
"eslint-config-prettier": "~10.1.8",
"eslint-plugin-jest": "~27.4.2",
"eslint-plugin-react": "~7.33.2",
"eslint-plugin-react-hooks": "~4.6.0",
"globby": "^13.2.2",
"jest": "^29.6.2",
"jest-junit": "^16.0.0",
"mocha": "^10.8.2",
"mocha-multi-reporters": "^1.5.1",
"playwright": "^1.36.0",
"prop-types": "^15.8.1",
"rimraf": "^4.4.0",
"simple-git": "^3.19.1",
"ts-jest": "^29.1.1",
"typescript": "~5.4.5"
},
"fluid": {
"browser": {
"umd": {
"files": [
"dist/main.bundle.js"
],
"library": "main"
}
}
},
"fluidBuild": {
"tasks": {
"check:exports": [
"build:esnext"
]
}
},
"typeValidation": {
"disabled": true
}
}