forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 4.43 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@fluid-example/multiview-container",
"version": "2.0.0-internal.1.2.0",
"private": true,
"description": "Container for multiview sample",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "examples/data-objects/multiview/container"
},
"license": "MIT",
"author": "Microsoft and contributors",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:compile": "concurrently npm:tsc npm:build:copy",
"build:copy": "copyfiles -u 1 \"src/**/*.css\" dist/",
"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",
"start": "webpack serve --config webpack.config.js --env mode=local",
"start:docker": "webpack serve --config webpack.config.js --env mode=docker",
"start:r11s": "webpack serve --config webpack.config.js --env mode=r11s",
"start:spo": "webpack serve --config webpack.config.js --env mode=spo",
"start:spo-df": "webpack serve --config webpack.config.js --env mode=spo-df",
"start:tinylicious": "webpack serve --config webpack.config.js --env mode=tinylicious",
"test": "npm run test:jest",
"test:jest": "jest",
"test:jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest",
"tsc": "tsc",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace",
"webpack": "webpack --env production",
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/multiview-constellation-model": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluid-example/multiview-constellation-view": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluid-example/multiview-coordinate-model": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluid-example/multiview-plot-coordinate-view": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluid-example/multiview-slider-coordinate-view": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluid-example/multiview-triangle-view": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluidframework/aqueduct": ">=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/container-runtime-definitions": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"react": "^16.10.2"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluidframework/build-common": "^1.0.0",
"@fluidframework/eslint-config-fluid": "^0.28.2000",
"@fluidframework/test-tools": "^0.2.3074",
"@rushstack/eslint-config": "^2.5.1",
"@types/expect-puppeteer": "2.2.1",
"@types/jest": "22.2.3",
"@types/jest-environment-puppeteer": "2.2.0",
"@types/node": "^14.18.0",
"@types/puppeteer": "1.3.0",
"@types/react": "^16.9.15",
"@types/react-dom": "^16.9.4",
"concurrently": "^6.2.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.2",
"css-loader": "^1.0.0",
"eslint": "~8.6.0",
"jest": "^26.6.3",
"jest-junit": "^10.0.0",
"jest-puppeteer": "^4.3.0",
"puppeteer": "^1.20.0",
"rimraf": "^2.6.2",
"style-loader": "^1.0.0",
"ts-jest": "^26.4.4",
"ts-loader": "^9.3.0",
"typescript": "~4.5.5",
"typescript-formatter": "7.1.0",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "~4.6.0",
"webpack-merge": "^5.8.0"
},
"fluid": {
"browser": {
"umd": {
"files": [
"dist/main.bundle.js"
],
"library": "main"
}
}
},
"jest-junit": {
"outputDirectory": "nyc",
"outputName": "jest-junit-report.xml"
}
}