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
103 lines (103 loc) · 3.31 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.31 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
{
"name": "@fluidframework/server-services",
"version": "0.1023.0",
"description": "Fluid server services",
"homepage": "https://fluidframework.com",
"repository": "https://github.com/microsoft/FluidFramework",
"license": "MIT",
"author": "Microsoft",
"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",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"test": "mocha --recursive dist/test --unhandled-rejections=strict",
"test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
"tsc": "tsc",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace"
},
"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/common-utils": "^0.29.0",
"@fluidframework/protocol-definitions": "^0.1023.0",
"@fluidframework/server-services-client": "^0.1023.0",
"@fluidframework/server-services-core": "^0.1023.0",
"@fluidframework/server-services-ordering-kafkanode": "^0.1023.0",
"@fluidframework/server-services-ordering-rdkafka": "^0.1023.0",
"@fluidframework/server-services-shared": "^0.1023.0",
"@fluidframework/server-services-utils": "^0.1023.0",
"amqplib": "^0.5.5",
"axios": "^0.21.1",
"debug": "^4.1.1",
"ioredis": "^4.24.2",
"lru-cache": "^6.0.0",
"mongodb": "3.1.13",
"nconf": "^0.11.0",
"socket.io": "^2.2.0",
"socket.io-emitter": "^3.1.1",
"telegrafjs": "^0.1.3",
"uuid": "^8.3.1",
"winston": "^3.1.0"
},
"devDependencies": {
"@fluidframework/build-common": "^0.21.0-0",
"@fluidframework/eslint-config-fluid": "^0.23.0",
"@fluidframework/server-test-utils": "^0.1023.0",
"@types/amqplib": "^0.5.9",
"@types/debug": "^4.1.5",
"@types/ioredis": "^4.22.0",
"@types/lru-cache": "^5.1.0",
"@types/mocha": "^5.2.5",
"@types/mongodb": "3.1.17",
"@types/node": "^12.19.0",
"@types/node-zookeeper-client": "0.2.7",
"@types/sinon": "^9.0.9",
"@types/socket.io": "^2.1.1",
"@types/uuid": "^8.3.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",
"ioredis-mock": "^5.2.5",
"mocha": "^8.1.1",
"nyc": "^15.0.0",
"rimraf": "^2.6.2",
"sinon": "^9.2.1",
"typescript": "~4.1.3",
"typescript-formatter": "7.1.0"
}
}