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
90 lines (90 loc) · 4.13 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 4.13 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
{
"name": "@fluid-internal/tablebench",
"version": "2.91.0",
"private": true,
"description": "Table focused benchmarks",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "examples/benchmarks/tablebench"
},
"license": "MIT",
"author": "Microsoft and contributors",
"sideEffects": false,
"type": "module",
"scripts": {
"bench": "mocha --timeout 999999 --perfMode --parentProcess --fgrep @Benchmark --fgrep @ExecutionTime --reporter @fluid-tools/benchmark/dist/MochaReporter.js",
"bench:profile": "mocha --v8-prof --v8-logfile=profile.log --v8-no-logfile-per-isolate --timeout 999999 --perfMode --fgrep @Benchmark --fgrep @ExecutionTime --reporter @fluid-tools/benchmark/dist/MochaReporter.js && node --prof-process profile.log > profile.txt && rimraf profile.log && echo See results in profile.txt",
"bench:profile:inspect-brk": "mocha --enable-source-maps --inspect-brk --timeout 999999 --perfMode --fgrep @Benchmark --fgrep @ExecutionTime --reporter @fluid-tools/benchmark/dist/MochaReporter.js",
"bench:size": "mocha --timeout 999999 --perfMode --fgrep @Size",
"build": "fluid-build . --task build",
"build:commonjs": "fluid-build . --task commonjs",
"build:compile": "fluid-build . --task compile",
"build:esnext": "tsc --project ./tsconfig.json",
"build:test": "npm run build:test:esm",
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
"eslint": "eslint --quiet --format stylish src",
"eslint:fix": "eslint --quiet --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"prepack": "npm run webpack",
"postpack": "tar -cf ./tablebench.test-files.tar ./src/test ./lib/test",
"start": "start-server-and-test tinylicious 7070 start:webpack",
"start:t9s": "tinylicious",
"start:webpack": "webpack serve --config webpack.config.cjs --env mode=tinylicious",
"test": "npm run test:mocha",
"test:benchmark:report": "mocha --exit --perfMode --parentProcess --fgrep @Benchmark --fgrep @ExecutionTime --reporter @fluid-tools/benchmark/dist/MochaReporter.js --timeout 60000",
"test:customBenchmarks": "mocha --config ./.mocharc.customBenchmarks.cjs",
"test:customBenchmarks:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:customBenchmarks",
"test:mocha": "npm run test:mocha:esm",
"test:mocha:esm": "mocha",
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
"webpack": "webpack --env production",
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-internal/client-utils": "workspace:~",
"@fluid-private/stochastic-test-utils": "workspace:~",
"@fluidframework/azure-client": "workspace:~",
"@fluidframework/core-interfaces": "workspace:~",
"@fluidframework/datastore-definitions": "workspace:~",
"@fluidframework/matrix": "workspace:~",
"@fluidframework/test-runtime-utils": "workspace:~",
"@fluidframework/tree": "workspace:~"
},
"devDependencies": {
"@biomejs/biome": "~2.4.5",
"@fluid-example/example-utils": "workspace:~",
"@fluid-internal/mocha-test-setup": "workspace:~",
"@fluid-tools/benchmark": "^0.52.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "catalog:buildTools",
"@fluidframework/eslint-config-fluid": "catalog:eslint",
"@fluidframework/id-compressor": "workspace:~",
"@types/mocha": "^10.0.10",
"@types/node": "~20.19.30",
"cross-env": "^10.1.0",
"eslint": "catalog:eslint",
"jiti": "^2.6.1",
"mocha": "^11.7.5",
"mocha-multi-reporters": "^1.5.1",
"rimraf": "^6.1.3",
"start-server-and-test": "^2.0.3",
"tinylicious": "^7.0.0",
"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"
},
"typeValidation": {
"disabled": true
}
}