forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.45 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
{
"name": "@fluidframework/server-services-ordering-rdkafka",
"version": "6.0.0",
"description": "Fluid server services rdkafka orderer implementation",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/routerlicious/packages/services-ordering-rdkafka"
},
"license": "MIT",
"author": "Microsoft and contributors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:compile": "npm run tsc && npm run typetests:gen",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\"",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run prettier:fix",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"prettier": "prettier --check . --cache --ignore-path ../../.prettierignore",
"prettier:fix": "prettier --write . --cache --ignore-path ../../.prettierignore",
"tsc": "tsc",
"typetests:gen": "fluid-type-test-generator",
"typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
},
"dependencies": {
"@fluidframework/common-utils": "^3.1.0",
"@fluidframework/server-services-client": "workspace:~",
"@fluidframework/server-services-core": "workspace:~",
"@fluidframework/server-services-telemetry": "workspace:~",
"events_pkg": "npm:events@^3.1.0",
"nconf": "^0.12.0",
"node-rdkafka": "^3.0.1",
"sillyname": "^0.1.0"
},
"devDependencies": {
"@fluid-tools/build-cli": "^0.38.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.38.0",
"@fluidframework/eslint-config-fluid": "^5.2.0",
"@fluidframework/server-services-ordering-rdkafka-previous": "npm:@fluidframework/[email protected]",
"@fluidframework/server-test-utils": "workspace:~",
"@types/amqplib": "^0.5.17",
"@types/debug": "^4.1.5",
"@types/lru-cache": "^5.1.0",
"@types/node": "^18.19.39",
"@types/sinon": "^9.0.9",
"concurrently": "^8.2.1",
"eslint": "~8.55.0",
"prettier": "~3.0.3",
"rimraf": "^4.4.0",
"sinon": "^9.2.3",
"typescript": "~5.1.6"
},
"fluidBuild": {
"tasks": {
"tsc": [
"...",
"typetests:gen"
]
}
},
"typeValidation": {
"broken": {
"ClassDeclaration_RdkafkaConsumer": {
"forwardCompat": false
}
}
}
}