UNPKG

synopkg

Version:

Consistent dependency versions in large JavaScript Monorepos

109 lines (108 loc) 3.97 kB
{ "name": "@fluid-example/app-insights-logger", "version": "2.5.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", "check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore", "clean": "rimraf --glob coverage dist lib nyc \"**/*.tsbuildinfo\" \"**/*.build.log\"", "eslint": "eslint src", "eslint:fix": "eslint 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", "format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore", "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": "~1.9.3", "@fluidframework/build-common": "^2.0.3", "@fluidframework/build-tools": "^0.49.0", "@fluidframework/eslint-config-fluid": "^5.4.0", "@testing-library/dom": "^10.4.0", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^16.0.1", "@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": "^7.0.3", "eslint": "~8.55.0", "eslint-config-prettier": "~9.0.0", "eslint-plugin-jest": "~27.4.2", "eslint-plugin-react": "~7.33.2", "eslint-plugin-react-hooks": "~4.6.0", "html-webpack-plugin": "^5.6.0", "jest": "^29.6.2", "jest-environment-jsdom": "^29.6.2", "jest-junit": "^10.0.0", "prettier": "~3.0.3", "rimraf": "^4.4.0", "start-server-and-test": "^2.0.3", "tinylicious": "^5.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", "webpack-merge": "^6.0.1" }, "fluid": { "browser": { "umd": { "files": [ "dist/main.bundle.js" ], "library": "main" } } }, "typeValidation": { "disabled": true, "broken": {}, "entrypoint": "internal" } }