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
115 lines (115 loc) · 4.08 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 4.08 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
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
108
109
110
111
112
113
114
115
{
"name": "@fluidframework/webpack-fluid-loader",
"version": "0.28.0",
"description": "Fluid object loader for webpack-dev-server",
"homepage": "https://fluidframework.com",
"repository": "microsoft/FluidFramework",
"license": "MIT",
"author": "Microsoft",
"main": "dist/index.js",
"module": "lib/index.js",
"browser": {
"moniker": "@fluidframework/server-services-client/dist/generateNames.js"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:compile": "concurrently npm:tsc npm:build:esnext npm:build:webpack",
"build:esnext": "tsc --project ./tsconfig.esnext.json",
"build:full": "npm run build",
"build:full:compile": "npm run build:compile",
"build:webpack": "npm run webpack",
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --ext=ts,tsx --format stylish src --fix",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"prepack": "npm run webpack",
"test": "npm run test:mocha",
"test:coverage": "nyc npm test -- --reporter mocha-junit-reporter --reporter-options mochaFile=nyc/junit-report.xml",
"test:mocha": "mocha --recursive dist/test --exit -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict",
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
"tsc": "tsc",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace",
"webpack": "webpack --color --config webpack.config.js"
},
"nyc": {
"all": true,
"cache-dir": "nyc/.cache",
"exclude": [
"src/test/**/*.ts",
"dist/test/**/*.js"
],
"exclude-after-remap": false,
"include": [
"src/**/*.ts",
"dist/**/*.js"
],
"report-dir": "nyc/report",
"reporter": [
"cobertura",
"html",
"text"
],
"temp-directory": "nyc/.nyc_output"
},
"dependencies": {
"@fluidframework/aqueduct": "^0.28.0",
"@fluidframework/common-utils": "^0.24.0-0",
"@fluidframework/container-definitions": "^0.28.0",
"@fluidframework/container-loader": "^0.28.0",
"@fluidframework/core-interfaces": "^0.28.0",
"@fluidframework/driver-definitions": "^0.28.0",
"@fluidframework/driver-utils": "^0.28.0",
"@fluidframework/local-driver": "^0.28.0",
"@fluidframework/odsp-driver": "^0.28.0",
"@fluidframework/odsp-utils": "^0.28.0",
"@fluidframework/protocol-definitions": "^0.1014.0-0",
"@fluidframework/routerlicious-driver": "^0.28.0",
"@fluidframework/runtime-utils": "^0.28.0",
"@fluidframework/server-local-server": "^0.1014.0-0",
"@fluidframework/server-services-client": "^0.1014.0-0",
"@fluidframework/test-runtime-utils": "^0.28.0",
"@fluidframework/tool-utils": "^0.28.0",
"@fluidframework/view-adapters": "^0.28.0",
"@fluidframework/view-interfaces": "^0.28.0",
"@fluidframework/web-code-loader": "^0.28.0",
"axios": "^0.18.0",
"express": "^4.16.3",
"moniker": "^0.1.2",
"nconf": "^0.10.0",
"uuid": "^3.3.2",
"webpack-dev-server": "^3.8.0"
},
"devDependencies": {
"@fluidframework/build-common": "^0.19.2",
"@fluidframework/eslint-config-fluid": "^0.20.0-0",
"@fluidframework/mocha-test-setup": "^0.28.0",
"@types/express": "^4.11.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.17.24",
"@typescript-eslint/eslint-plugin": "~4.2.0",
"@typescript-eslint/parser": "~4.2.0",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"eslint": "~7.9.0",
"eslint-plugin-eslint-comments": "~3.2.0",
"eslint-plugin-import": "~2.22.0",
"eslint-plugin-no-null": "~1.0.2",
"eslint-plugin-prefer-arrow": "~1.2.2",
"eslint-plugin-react": "~7.21.2",
"eslint-plugin-unicorn": "~22.0.0",
"fs-extra": "^9.0.1",
"mocha": "^8.1.1",
"mocha-junit-reporter": "^1.18.0",
"nyc": "^15.0.0",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.1.2",
"typescript": "~3.7.4",
"typescript-formatter": "7.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}