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
60 lines (60 loc) · 2.19 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.19 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
{
"name": "@fluid-internal/hosts-sample",
"version": "0.41.0",
"private": true,
"description": "Sample Fluid container host",
"homepage": "https://fluidframework.com",
"repository": "https://github.com/microsoft/FluidFramework",
"license": "MIT",
"author": "Microsoft and contributors",
"main": "dist/index.js",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:compile": "npm run tsc",
"build:full": "concurrently npm:build npm:webpack",
"build:full:compile": "concurrently npm:build:compile npm:webpack",
"clean": "rimraf dist *.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": "webpack-dev-server --config webpack.config.js",
"tsc": "tsc",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace",
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
"@fluidframework/container-definitions": "^0.39.0",
"@fluidframework/container-loader": "^0.41.0",
"@fluidframework/core-interfaces": "^0.39.0",
"@fluidframework/protocol-definitions": "^0.1024.0",
"@fluidframework/routerlicious-driver": "^0.41.0",
"@fluidframework/test-runtime-utils": "^0.41.0",
"@fluidframework/view-interfaces": "^0.41.0",
"@fluidframework/web-code-loader": "^0.41.0"
},
"devDependencies": {
"@fluidframework/build-common": "^0.22.0",
"@fluidframework/eslint-config-fluid": "^0.23.0",
"@typescript-eslint/eslint-plugin": "~4.14.0",
"@typescript-eslint/parser": "~4.14.0",
"concurrently": "^5.2.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-cli": "^3.3.11",
"webpack-dev-server": "^3.8.0"
}
}