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
69 lines (69 loc) · 2.05 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.05 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
{
"name": "gitrest",
"version": "0.1.0",
"private": true,
"description": "Git REST API",
"homepage": "https://fluidframework.com",
"repository": "microsoft/FluidFramework",
"license": "MIT",
"author": "Microsoft",
"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 --ext=ts,tsx --format stylish src --fix",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"start": "node dist/www.js",
"test": "nyc --all -x dist/test/**/* mocha dist/test",
"tsc": "tsc"
},
"dependencies": {
"@fluidframework/gitresources": "^0.1012.0",
"body-parser": "^1.17.2",
"compression": "^1.7.3",
"cors": "^2.8.5",
"debug": "^4.1.1",
"express": "^4.16.4",
"morgan": "^1.9.1",
"nconf": "^0.10.0",
"nodegit": "^0.26.1",
"split": "^1.0.0",
"winston": "^2.4.4"
},
"devDependencies": {
"@fluidframework/eslint-config-fluid": "^0.20.0-0",
"@types/async": "^2.0.50",
"@types/cors": "^2.8.4",
"@types/debug": "^4.1.5",
"@types/lorem-ipsum": "^1.0.2",
"@types/mocha": "^2.2.48",
"@types/morgan": "^1.7.32",
"@types/nconf": "0.0.37",
"@types/node": "^12.12.54",
"@types/nodegit": "^0.26.7",
"@types/rimraf": "^2.0.2",
"@types/supertest": "^2.0.7",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "~4.2.0",
"@typescript-eslint/parser": "~4.2.0",
"async": "^2.5.0",
"concurrently": "^3.5.1",
"eslint": "~7.9.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.1.1",
"moniker": "^0.1.2",
"nyc": "^15.0.0",
"rimraf": "^2.6.3",
"supertest": "^3.4.2",
"typescript": "~3.7.4"
}
}