-
Notifications
You must be signed in to change notification settings - Fork 568
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.44 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.44 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
{
"name": "@fluidframework/gitrest-base",
"version": "1.0.0",
"description": "Git REST API base components",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/gitrest/packages/gitrest-base"
},
"license": "MIT",
"author": "Microsoft and contributors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:commonjs": "npm run tsc && npm run build:test",
"build:compile": "npm run build:commonjs",
"build:test": "tsc --project ./src/test/tsconfig.json",
"clean": "rimraf --glob dist \"**/*.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",
"start": "node dist/www.js",
"test": "mocha dist/test --reporterOptions maxDiffSize=1024",
"test:coverage": "c8 npm test",
"tsc": "tsc"
},
"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": "^1.1.1",
"@fluidframework/gitresources": "6.0.0-340759",
"@fluidframework/protocol-base": "6.0.0-340759",
"@fluidframework/protocol-definitions": "^3.2.0",
"@fluidframework/server-services-client": "6.0.0-340759",
"@fluidframework/server-services-core": "6.0.0-340759",
"@fluidframework/server-services-shared": "6.0.0-340759",
"@fluidframework/server-services-telemetry": "6.0.0-340759",
"@fluidframework/server-services-utils": "6.0.0-340759",
"@fluidframework/server-test-utils": "6.0.0-340759",
"async-mutex": "^0.3.2",
"axios": "^1.8.4",
"body-parser": "^1.20.3",
"compression": "^1.7.3",
"cors": "^2.8.5",
"debug": "^4.3.4",
"express": "^4.21.2",
"ioredis": "^5.6.1",
"isomorphic-git": "^1.25.10",
"json-stringify-safe": "^5.0.1",
"memfs": "^3.4.12",
"nconf": "^0.11.4",
"object-sizeof": "^1.6.3",
"prettier": "~3.0.3",
"split": "^1.0.0",
"uuid": "^3.3.2",
"winston": "^3.6.0"
},
"devDependencies": {
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/eslint-config-fluid": "^6.1.0",
"@types/async": "^3.2.9",
"@types/cors": "^2.8.4",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.17.32",
"@types/ioredis-mock": "^8.2.6",
"@types/lorem-ipsum": "^1.0.2",
"@types/mocha": "^10.0.0",
"@types/nconf": "^0.10.0",
"@types/node": "^18.17.1",
"@types/rimraf": "^3.0.2",
"@types/sinon": "^17.0.3",
"@types/supertest": "^2.0.7",
"@types/uuid": "^3.4.4",
"@types/winston": "^2.4.4",
"async": "^3.2.2",
"c8": "^10.1.3",
"concurrently": "^8.2.1",
"eslint": "~8.57.0",
"ioredis-mock": "8.9.0",
"lorem-ipsum": "^1.0.6",
"mocha": "^10.8.2",
"rimraf": "^3.0.2",
"sillyname": "^0.1.0",
"sinon": "^19.0.2",
"supertest": "^3.4.2",
"typescript": "~5.1.6"
}
}