forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.38 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
{
"name": "@fluid-example/bundle-size-tests",
"version": "2.0.0-internal.1.2.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",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:compile": "tsc",
"build:full": "concurrently npm:build npm:webpack",
"build:full:compile": "concurrently npm:build:compile npm:webpack",
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"prepack": "npm run webpack",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace",
"webpack": "webpack",
"webpack:profile": "npm run webpack"
},
"dependencies": {
"@fluidframework/aqueduct": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluidframework/map": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluidframework/matrix": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluidframework/odsp-driver": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"source-map-loader": "^2.0.0"
},
"devDependencies": {
"@cerner/duplicate-package-checker-webpack-plugin": "^2.3.0",
"@fluidframework/build-common": "^1.0.0",
"@fluidframework/bundle-size-tools": "^0.0.8505",
"@fluidframework/eslint-config-fluid": "^0.28.2000",
"@mixer/webpack-bundle-compare": "^0.1.0",
"@rushstack/eslint-config": "^2.5.1",
"@types/node": "^14.18.0",
"@types/puppeteer": "1.3.0",
"concurrently": "^6.2.0",
"cross-env": "^7.0.2",
"eslint": "~8.6.0",
"rimraf": "^2.6.2",
"ts-loader": "^9.3.0",
"typescript": "~4.5.5",
"typescript-formatter": "7.1.0",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2"
}
}