forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.68 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
{
"name": "gitrest",
"version": "0.1.0",
"private": true,
"description": "Git REST API",
"homepage": "https://fluidframework.com",
"repository": "https://github.com/microsoft/FluidFramework",
"license": "MIT",
"author": "Microsoft and contributors",
"main": "dist/www.js",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:compile": "npm run tsc",
"clean": "rimraf dist *.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",
"start": "node dist/www.js",
"start:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up",
"test": "nyc --all -x dist/test/**/* mocha dist/test",
"tsc": "tsc"
},
"dependencies": {
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/gitresources": "^0.1033.0",
"@fluidframework/protocol-base": "^0.1033.0",
"@fluidframework/protocol-definitions": "^0.1026.0",
"@fluidframework/server-services-client": "^0.1033.0",
"@fluidframework/server-services-core": "^0.1033.0",
"@fluidframework/server-services-shared": "^0.1033.0",
"@fluidframework/server-services-utils": "^0.1033.0",
"axios": "^0.21.2",
"body-parser": "^1.17.2",
"compression": "^1.7.3",
"cors": "^2.8.5",
"debug": "^4.1.1",
"express": "^4.16.4",
"json-stringify-safe": "^5.0.1",
"morgan": "^1.9.1",
"nconf": "^0.11.0",
"nodegit": "^0.27.0",
"split": "^1.0.0",
"uuid": "^3.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@fluidframework/build-common": "^0.23.0",
"@fluidframework/eslint-config-fluid": "^0.24.0",
"@types/async": "^3.2.6",
"@types/cors": "^2.8.4",
"@types/debug": "^4.1.5",
"@types/lorem-ipsum": "^1.0.2",
"@types/mocha": "^8.2.2",
"@types/morgan": "^1.7.32",
"@types/nconf": "^0.10.0",
"@types/node": "^12.12.54",
"@types/nodegit": "^0.27.3",
"@types/rimraf": "^2.0.2",
"@types/supertest": "^2.0.7",
"@types/uuid": "^3.4.4",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "~4.2.0",
"@typescript-eslint/parser": "~4.2.0",
"async": "^3.2.0",
"concurrently": "^6.2.0",
"eslint": "~7.18.0",
"eslint-plugin-eslint-comments": "~3.2.0",
"eslint-plugin-import": "~2.22.0",
"eslint-plugin-no-null": "~1.0.2",
"eslint-plugin-prefer-arrow": "~1.2.2",
"eslint-plugin-react": "~7.21.2",
"eslint-plugin-unicorn": "~22.0.0",
"lorem-ipsum": "^1.0.6",
"mocha": "^8.4.0",
"moniker": "^0.1.2",
"nyc": "^15.0.0",
"rimraf": "^2.6.3",
"supertest": "^3.4.2",
"typescript": "~4.1.3"
}
}