forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.64 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
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
116
117
118
119
120
121
{
"name": "@fluidframework/server-services",
"version": "6.0.0",
"description": "Fluid server services",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/routerlicious/packages/services"
},
"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 && npm run typetests:gen",
"build:genver": "gen-version",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
"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",
"test": "mocha --recursive \"dist/test/**/*.spec.*js\"",
"test:coverage": "c8 npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
"tsc": "tsc",
"typetests:gen": "fluid-type-test-generator",
"typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
},
"c8": {
"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/common-utils": "^3.1.0",
"@fluidframework/protocol-definitions": "^3.2.0",
"@fluidframework/server-services-client": "workspace:~",
"@fluidframework/server-services-core": "workspace:~",
"@fluidframework/server-services-ordering-kafkanode": "workspace:~",
"@fluidframework/server-services-ordering-rdkafka": "workspace:~",
"@fluidframework/server-services-shared": "workspace:~",
"@fluidframework/server-services-telemetry": "workspace:~",
"@fluidframework/server-services-utils": "workspace:~",
"@socket.io/redis-emitter": "^4.1.1",
"@types/lodash": "^4.14.118",
"amqplib": "^0.10.2",
"axios": "^1.7.7",
"debug": "^4.3.4",
"events": "^3.1.0",
"ioredis": "^5.2.3",
"lodash": "^4.17.21",
"lru-cache": "^6.0.0",
"mongodb": "4.17.1",
"nconf": "^0.12.0",
"socket.io": "^4.8.0",
"telegrafjs": "^0.1.3",
"uuid": "^9.0.0",
"winston": "^3.6.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-previous": "npm:@fluidframework/server-services@5.0.0",
"@fluidframework/server-test-utils": "workspace:~",
"@types/amqplib": "^0.5.17",
"@types/debug": "^4.1.5",
"@types/lru-cache": "^5.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.19.39",
"@types/sinon": "^17.0.3",
"@types/uuid": "^9.0.2",
"c8": "^8.0.1",
"concurrently": "^8.2.1",
"eslint": "~8.55.0",
"mocha": "^10.2.0",
"prettier": "~3.0.3",
"redis-commands": "^1.7.0",
"rimraf": "^4.4.0",
"sinon": "^18.0.1",
"typescript": "~5.1.6"
},
"fluidBuild": {
"tasks": {
"tsc": [
"...",
"typetests:gen"
]
}
},
"typeValidation": {
"broken": {
"ClassDeclaration_MongoDb": {
"forwardCompat": false
},
"ClassDeclaration_WebServer": {
"backCompat": false
}
}
}
}