FluidHelloWorld/package.json

52 строки
1.6 KiB
JSON
Исходник Постоянная ссылка Обычный вид История

{
"name": "@fluid-example/hello-world",
"version": "0.1.0",
2024-11-12 00:31:06 +03:00
"private": true,
"description": "Minimal Fluid Container & Data Object sample to implement a collaborative dice roller as a standalone app.",
"repository": "microsoft/FluidHelloWorld",
"license": "MIT",
"author": "Microsoft",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "webpack --env prod",
"build:dev": "webpack",
"ci:test": "start-server-and-test start:server 7070 ci:test:jest",
"ci:test:jest": "jest --ci --reporters=default --reporters=jest-junit",
"start": "start-server-and-test start:server 7070 start:client",
"start:client": "webpack serve",
"start:server": "tinylicious",
"format": "npm run prettier:fix",
"lint": "npm run prettier",
"lint:fix": "npm run prettier:fix",
"prettier": "prettier --check . --ignore-path ./.prettierignore",
"prettier:fix": "prettier --write . --ignore-path ./.prettierignore",
"test": "start-server-and-test start:server 7070 test:jest",
"test:jest": "jest"
},
"dependencies": {
Bump the fluid-framework-dependencies group with 2 updates (#432) Bumps the fluid-framework-dependencies group with 2 updates: [@fluidframework/tinylicious-client](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/service-clients/tinylicious-client) and [fluid-framework](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/fluid-framework). Updates `@fluidframework/tinylicious-client` from 2.4.0 to 2.5.0 - [Release notes](https://github.com/microsoft/FluidFramework/releases) - [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/service-clients/tinylicious-client/CHANGELOG.md) - [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.5.0/packages/service-clients/tinylicious-client) Updates `fluid-framework` from 2.4.0 to 2.5.0 - [Release notes](https://github.com/microsoft/FluidFramework/releases) - [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/fluid-framework/CHANGELOG.md) - [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.5.0/packages/framework/fluid-framework) --- updated-dependencies: - dependency-name: "@fluidframework/tinylicious-client" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: fluid-framework-dependencies - dependency-name: fluid-framework dependency-type: direct:production update-type: version-update:semver-minor dependency-group: fluid-framework-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-12 00:43:38 +03:00
"@fluidframework/tinylicious-client": "^2.5.0",
"fluid-framework": "^2.5.0"
},
"devDependencies": {
"@fluidframework/build-common": "^2.0.3",
"copy-webpack-plugin": "^12.0.2",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.0.0",
"jest-junit": "^16.0.0",
"jest-puppeteer": "^10.1.4",
"prettier": "^3.0.3",
"puppeteer": "^23.7.1",
2024-10-05 01:28:05 +03:00
"start-server-and-test": "^2.0.8",
"tinylicious": "^5.0.0",
2024-10-05 01:28:05 +03:00
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"jest-junit": {
"outputDirectory": "nyc",
"outputName": "jest-junit-report.xml"
}
}