forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.97 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
{
"name": "@fluidframework/server-services-ordering-kafkanode",
"version": "0.1037.2000",
"description": "Fluid server services kafka-node orderer implementation",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/routerlicious/packages/services-ordering-kafkanode"
},
"license": "MIT",
"author": "Microsoft and contributors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:genver && concurrently npm:build:compile npm:lint",
"build:compile": "npm run tsc",
"build:full": "npm run build",
"build:full:compile": "npm run build:compile",
"build:genver": "gen-version",
"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",
"tsc": "tsc",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace"
},
"dependencies": {
"@fluidframework/server-services-client": "^0.1037.2000",
"@fluidframework/server-services-core": "^0.1037.2000",
"@fluidframework/server-services-ordering-zookeeper": "^0.1037.2000",
"kafka-node": "^5.0.0",
"nconf": "^0.12.0",
"sillyname": "^0.1.0"
},
"devDependencies": {
"@fluidframework/build-common": "^1.0.0",
"@fluidframework/eslint-config-fluid": "^0.28.2000",
"@fluidframework/server-test-utils": "^0.1037.2000",
"@rushstack/eslint-config": "^2.5.1",
"@types/debug": "^4.1.5",
"@types/lru-cache": "^5.1.0",
"@types/mocha": "^9.1.1",
"@types/node": "^14.18.0",
"@types/sinon": "^9.0.9",
"concurrently": "^6.2.0",
"eslint": "~8.6.0",
"mocha": "^10.0.0",
"nyc": "^15.0.0",
"rimraf": "^2.6.2",
"sinon": "^9.2.1",
"typescript": "~4.5.5",
"typescript-formatter": "7.1.0"
}
}