forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.92 KB
/
package.json
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
{
"name": "@fluid-example/bundle-size-tests",
"version": "2.12.0",
"private": true,
"description": "A package for understanding the bundle size of Fluid Framework",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "examples/utils/bundle-size-tests"
},
"license": "MIT",
"author": "Microsoft and contributors",
"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 dist lib bundleAnalysis \"**/*.tsbuildinfo\" \"**/*.build.log\"",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"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",
"prepack": "npm run webpack",
"webpack": "webpack",
"webpack:profile": "npm run webpack"
},
"dependencies": {
"@fluidframework/aqueduct": "workspace:~",
"@fluidframework/azure-client": "workspace:~",
"@fluidframework/container-loader": "workspace:~",
"@fluidframework/container-runtime": "workspace:~",
"@fluidframework/container-runtime-definitions": "workspace:~",
"@fluidframework/map": "workspace:~",
"@fluidframework/matrix": "workspace:~",
"@fluidframework/odsp-client": "workspace:~",
"@fluidframework/odsp-driver": "workspace:~",
"@fluidframework/sequence": "workspace:~",
"@fluidframework/tree": "workspace:~",
"fluid-framework": "workspace:~"
},
"devDependencies": {
"@biomejs/biome": "~1.9.3",
"@cerner/duplicate-package-checker-webpack-plugin": "~2.3.0",
"@fluid-tools/version-tools": "^0.51.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/bundle-size-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@mixer/webpack-bundle-compare": "^0.1.0",
"@types/node": "^18.19.0",
"eslint": "~8.55.0",
"prettier": "~3.0.3",
"puppeteer": "^23.6.0",
"rimraf": "^4.4.0",
"source-map-loader": "^5.0.0",
"string-replace-loader": "^3.1.0",
"ts-loader": "^9.5.1",
"typescript": "~5.4.5",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^5.1.4"
},
"comments": [
"@cerner/duplicate-package-checker-webpack-plugin is pinned since newer version (2.3 through 2.6) refuse to work on NodeJS other than 10 || 12 || 14 due to https://github.com/cerner/terra-toolkit/issues/828"
],
"typeValidation": {
"disabled": true,
"broken": {},
"entrypoint": "internal"
}
}