forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.56 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.56 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
{
"name": "@fluid-example/app-insights-logger",
"version": "2.91.0",
"private": true,
"description": "Provides a simple Fluid application with a UI view written in React to test the Fluid App Insights telemetry logger that will route typical Fluid telemetry to configured Azure App Insights",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "examples/client-logger/app-insights-logger"
},
"license": "MIT",
"author": "Microsoft and contributors",
"sideEffects": false,
"type": "module",
"scripts": {
"build": "fluid-build . --task build",
"build:compile": "fluid-build . --task compile",
"build:esnext": "tsc --project ./tsconfig.json",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"clean": "rimraf --glob 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",
"start": "start-server-and-test start:tinylicious 7070 start:test-app:client",
"start:test-app:client": "webpack serve --config webpack.config.cjs",
"start:tinylicious": "tinylicious",
"test": "npm run test:jest",
"test:coverage": "npm run test:jest:coverage",
"test:jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --detectOpenHandles --no-cache",
"test:jest:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --detectOpenHandles --coverage --no-cache --ci",
"webpack": "webpack --env production",
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": "workspace:~",
"@fluidframework/app-insights-logger": "workspace:~",
"@fluidframework/container-loader": "workspace:~",
"@fluidframework/core-interfaces": "workspace:~",
"@fluidframework/counter": "workspace:~",
"@fluidframework/fluid-static": "workspace:~",
"@fluidframework/map": "workspace:~",
"@fluidframework/sequence": "workspace:~",
"@fluidframework/tinylicious-client": "workspace:~",
"@microsoft/applicationinsights-web": "^2.8.11",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "~2.4.5",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "catalog:buildTools",
"@fluidframework/eslint-config-fluid": "catalog:eslint",
"@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/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/testing-library__jest-dom": "^5.14.5",
"cross-env": "^10.1.0",
"eslint": "catalog:eslint",
"eslint-config-prettier": "catalog:eslint",
"eslint-plugin-jest": "~29.5.0",
"eslint-plugin-react": "~7.37.5",
"eslint-plugin-react-hooks": "~7.0.1",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jest-junit": "^16.0.0",
"jiti": "^2.6.1",
"rimraf": "^6.1.3",
"start-server-and-test": "^2.0.3",
"tinylicious": "^7.0.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"tslib": "^1.10.0",
"typescript": "~5.4.5",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "~4.15.2"
},
"typeValidation": {
"disabled": true
}
}