forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.93 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
{
"name": "tinylicious",
"version": "0.2.0",
"description": "Tiny, test implementation of the routerlicious reference service",
"homepage": "https://fluidframework.com",
"repository": "microsoft/FluidFramework",
"license": "MIT",
"author": "Microsoft",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": "dist/index.js",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:compile": "npm run tsc",
"build:full": "npm run build",
"build:full:compile": "npm run build:compile",
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
"eslint": "eslint --ext=ts,tsx --format stylish src",
"eslint:fix": "eslint --ext=ts,tsx --format stylish src --fix",
"lint": "npm run eslint",
"start": "node dist/index.js",
"start:debug": "node --inspect=0.0.0.0:9229 dist/index.js",
"tsc": "tsc"
},
"dependencies": {
"@fluidframework/common-utils": "^0.24.0-0",
"@fluidframework/gitresources": "^0.1012.0",
"@fluidframework/protocol-base": "^0.1012.0",
"@fluidframework/protocol-definitions": "^0.1012.0",
"@fluidframework/server-lambdas": "^0.1012.0",
"@fluidframework/server-local-server": "^0.1012.0",
"@fluidframework/server-memory-orderer": "^0.1012.0",
"@fluidframework/server-services-client": "^0.1012.0",
"@fluidframework/server-services-core": "^0.1012.0",
"@fluidframework/server-services-shared": "^0.1012.0",
"@fluidframework/server-services-utils": "^0.1012.0",
"@fluidframework/server-test-utils": "^0.1012.0",
"@types/bytes": "^3.1.0",
"@types/compression": "0.0.33",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.4",
"@types/json-stringify-safe": "^5.0.0",
"@types/jsonwebtoken": "^8.3.7",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.5",
"@types/morgan": "^1.7.35",
"@types/nconf": "^0.0.37",
"@types/node": "^10.17.13",
"@types/redis": "^2.8.8",
"@types/semver": "^6.2.0",
"@types/socket.io": "^2.1.4",
"@types/split": "^0.3.28",
"@types/ws": "^6.0.4",
"body-parser": "^1.17.1",
"bytes": "^3.0.0",
"charwise": "^3.0.1",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"isomorphic-git": "^0.72.1",
"json-stringify-safe": "^5.0.1",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.19",
"morgan": "^1.8.1",
"nconf": "^0.10.0",
"semver": "^6.3.0",
"socket.io": "^2.2.0",
"split": "^1.0.0",
"winston": "^3.1.0"
},
"devDependencies": {
"@fluidframework/build-common": "^0.19.2",
"@fluidframework/eslint-config-fluid": "^0.19.1",
"@microsoft/api-extractor": "^7.7.7",
"@typescript-eslint/eslint-plugin": "~2.17.0",
"@typescript-eslint/eslint-plugin-tslint": "~2.16.0",
"@typescript-eslint/parser": "~2.17.0",
"concurrently": "^5.2.0",
"eslint": "~6.8.0",
"rimraf": "^2.6.2",
"ts-node": "^8.6.2",
"typescript": "~3.7.4"
}
}