forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.92 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.92 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
{
"name": "@fluid-example/iframe-host",
"version": "0.39.0",
"description": "IFrame Host",
"homepage": "https://fluidframework.com",
"repository": "https://github.com/microsoft/FluidFramework",
"license": "MIT",
"author": "Microsoft",
"sideEffects": false,
"main": "dist/index.js",
"module": "lib/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:compile": "concurrently npm:tsc npm:build:esnext npm:build:copy",
"build:compile:min": "npm run build:compile",
"build:copy": "copyfiles -u 1 \"src/**/*.html\" dist/",
"build:docs": "api-extractor run --local && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
"build:esnext": "tsc --project ./tsconfig.esnext.json",
"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",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"prepack": "npm run webpack",
"start": " npm run build:copy & webpack-dev-server --content-base dist/",
"tsc": "tsc",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace",
"webpack": "webpack --env build"
},
"dependencies": {
"@fluid-example/todo": "^0.39.0",
"@fluid-experimental/get-container": "^0.39.0",
"@fluidframework/base-host": "^0.39.0",
"@fluidframework/container-definitions": "^0.39.0",
"@fluidframework/container-loader": "^0.39.0",
"@fluidframework/core-interfaces": "^0.39.0",
"@fluidframework/driver-definitions": "^0.39.0",
"@fluidframework/driver-utils": "^0.39.0",
"@fluidframework/iframe-driver": "^0.39.0",
"@fluidframework/protocol-definitions": "^0.1022.0",
"@fluidframework/routerlicious-driver": "^0.39.0",
"@fluidframework/test-runtime-utils": "^0.39.0",
"@fluidframework/view-adapters": "^0.39.0",
"@fluidframework/web-code-loader": "^0.39.0",
"comlink": "^4.3.0"
},
"devDependencies": {
"@fluidframework/build-common": "^0.21.0-0",
"@fluidframework/eslint-config-fluid": "^0.23.0",
"@microsoft/api-extractor": "^7.13.1",
"@types/node": "^12.19.0",
"@typescript-eslint/eslint-plugin": "~4.14.0",
"@typescript-eslint/parser": "~4.14.0",
"concurrently": "^5.2.0",
"copyfiles": "^2.1.0",
"eslint": "~7.18.0",
"eslint-plugin-eslint-comments": "~3.2.0",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-no-null": "~1.0.2",
"eslint-plugin-prefer-arrow": "~1.2.2",
"eslint-plugin-react": "~7.22.0",
"eslint-plugin-unicorn": "~26.0.1",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.1.2",
"typescript": "~4.1.3",
"typescript-formatter": "7.1.0",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.8.0"
}
}