forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 4.29 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
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": "tinylicious",
"version": "0.4.0",
"description": "Tiny, test implementation of the routerlicious reference service",
"homepage": "https://fluidframework.com",
"repository": "https://github.com/microsoft/FluidFramework",
"license": "MIT",
"author": "Microsoft and contributors",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": "dist/index.js",
"scripts": {
"build": "concurrently npm:build:compile npm:lint && npm run build:docs",
"build:compile": "npm run tsc && npm run build:test",
"build:docs": "api-extractor run --local --typescript-compiler-folder ./node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../_api-extractor-temp/",
"build:full": "npm run build",
"build:full:compile": "npm run build:compile",
"build:test": "tsc --project ./src/test/tsconfig.json",
"ci:build:docs": "api-extractor run --typescript-compiler-folder ./node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../_api-extractor-temp/",
"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",
"start": "forever start dist/index.js",
"start:debug": "node --inspect=0.0.0.0:9229 dist/index.js",
"stop": "forever stop dist/index.js",
"test": "npm run test:mocha",
"test:mocha": "mocha --recursive dist/test -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict",
"tsc": "tsc"
},
"dependencies": {
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/gitresources": "^0.1034.0",
"@fluidframework/protocol-base": "^0.1034.0",
"@fluidframework/protocol-definitions": "^0.1026.0",
"@fluidframework/server-lambdas": "^0.1034.0",
"@fluidframework/server-local-server": "^0.1034.0",
"@fluidframework/server-memory-orderer": "^0.1034.0",
"@fluidframework/server-services-client": "^0.1034.0",
"@fluidframework/server-services-core": "^0.1034.0",
"@fluidframework/server-services-shared": "^0.1034.0",
"@fluidframework/server-services-telemetry": "^0.1034.0",
"@fluidframework/server-services-utils": "^0.1034.0",
"@fluidframework/server-test-utils": "^0.1034.0",
"axios": "^0.21.2",
"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",
"detect-port": "^1.3.0",
"express": "^4.16.3",
"isomorphic-git": "^0.72.1",
"json-stringify-safe": "^5.0.1",
"jsonwebtoken": "^8.4.0",
"level": "^6.0.1",
"level-sublevel": "6.6.4",
"lodash": "^4.17.21",
"morgan": "^1.8.1",
"nconf": "^0.11.0",
"semver": "^6.3.0",
"socket.io": "^4.1.2",
"split": "^1.0.0",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@fluidframework/build-common": "^0.23.0",
"@fluidframework/eslint-config-fluid": "^0.24.0",
"@fluidframework/mocha-test-setup": "^0.27.0",
"@microsoft/api-extractor": "^7.16.1",
"@types/bytes": "^3.1.0",
"@types/compression": "0.0.33",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.4",
"@types/detect-port": "^1.3.0",
"@types/json-stringify-safe": "^5.0.0",
"@types/jsonwebtoken": "^8.3.7",
"@types/lodash": "^4.14.149",
"@types/mocha": "^8.2.2",
"@types/morgan": "^1.7.35",
"@types/nconf": "^0.10.0",
"@types/node": "^12.19.0",
"@types/redis": "^2.8.8",
"@types/rimraf": "^3.0.0",
"@types/semver": "^6.2.0",
"@types/split": "^0.3.28",
"@types/uuid": "^8.3.1",
"@types/ws": "^6.0.4",
"@typescript-eslint/eslint-plugin": "~4.14.0",
"@typescript-eslint/eslint-plugin-tslint": "~2.16.0",
"@typescript-eslint/parser": "~4.14.0",
"concurrently": "^6.2.0",
"copyfiles": "^2.1.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",
"forever": "^3.0.4",
"mocha": "^8.4.0",
"rimraf": "^2.6.2",
"ts-node": "^8.6.2",
"typescript": "~4.1.3"
},
"engines": {
"node": ">=12.17.0"
}
}