UNPKG

synopkg

Version:

Consistent dependency versions in large JavaScript Monorepos

129 lines (128 loc) 4.94 kB
{ "name": "@fluid-example/devtools-example", "version": "2.5.0", "private": true, "description": "An example application demonstrating how Fluid's devtools can be integrated into an application", "homepage": "https://fluidframework.com", "repository": { "type": "git", "url": "https://github.com/microsoft/FluidFramework.git", "directory": "packages/tools/devtools/devtools-example" }, "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 _api-extractor-temp 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", "rebuild": "npm run clean && npm run build", "start": "concurrently \"npm:watch:*\" npm:start:client", "start:client": "webpack serve --config webpack.config.cjs", "test": "npm run test:jest", "test:coverage": "npm run test:jest:coverage", "test:jest": "jest --detectOpenHandles", "test:jest:coverage": "jest --detectOpenHandles --coverage --ci", "watch:devtools-core": "tsc --watch --project ../devtools-core/tsconfig.json --preserveWatchOutput", "watch:devtools-view": "copyfiles -f ../../../../common/build/build-common/src/esm/package.json ../devtools-view/lib && fluid-tsc module --watch --project ../devtools-view/tsconfig.esm.json --preserveWatchOutput", "watch:esnext": "tsc --watch --project ./tsconfig.json", "webpack": "webpack --env production", "webpack:dev": "webpack --env development" }, "dependencies": { "@fluentui/react-components": "^9.47.5", "@fluentui/react-icons": "^2.0.233", "@fluid-example/example-utils": "workspace:~", "@fluid-internal/client-utils": "workspace:~", "@fluid-internal/devtools-view": "workspace:~", "@fluidframework/aqueduct": "workspace:~", "@fluidframework/cell": "workspace:~", "@fluidframework/container-definitions": "workspace:~", "@fluidframework/container-loader": "workspace:~", "@fluidframework/container-runtime-definitions": "workspace:~", "@fluidframework/core-interfaces": "workspace:~", "@fluidframework/counter": "workspace:~", "@fluidframework/datastore-definitions": "workspace:~", "@fluidframework/devtools-core": "workspace:~", "@fluidframework/driver-definitions": "workspace:~", "@fluidframework/fluid-static": "workspace:~", "@fluidframework/map": "workspace:~", "@fluidframework/matrix": "workspace:~", "@fluidframework/runtime-utils": "workspace:~", "@fluidframework/sequence": "workspace:~", "@fluidframework/shared-object-base": "workspace:~", "@fluidframework/test-runtime-utils": "workspace:~", "@fluidframework/tree": "workspace:~", "re-resizable": "^6.9.9", "react": "^18.3.1", "react-dom": "^18.3.1", "scheduler": "^0.20.0" }, "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", "@fluidframework/test-utils": "workspace:~", "@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/jest-environment-puppeteer": "workspace:~", "@types/react": "^18.3.11", "@types/react-dom": "^18.3.0", "@types/testing-library__jest-dom": "^5.14.5", "concurrently": "^8.2.1", "copyfiles": "^2.4.1", "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-environment-puppeteer": "^9.0.2", "jest-junit": "^10.0.0", "prettier": "~3.0.3", "puppeteer": "^22.2.0", "rimraf": "^4.4.0", "ts-jest": "^29.1.1", "ts-loader": "^9.5.1", "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" } }