-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathpackage.json
90 lines (90 loc) · 2.94 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
{
"name": "@gitpod/gitpod-protocol",
"version": "0.1.5",
"license": "UNLICENSED",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"data/*.json",
"src"
],
"devDependencies": {
"@grpc/grpc-js": "1.12.6",
"@testdeck/mocha": "^0.3.3",
"@types/analytics-node": "^3.1.9",
"@types/chai-subset": "^1.3.3",
"@types/cookie": "^0.4.1",
"@types/express": "^4.17.13",
"@types/google-protobuf": "^3.15.5",
"@types/jaeger-client": "^3.18.3",
"@types/js-yaml": "^3.10.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.18.8",
"@types/random-number-csprng": "^1.0.0",
"@types/uuid": "^8.3.1",
"@types/ws": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"chai": "^4.3.4",
"chai-subset": "^1.6.0",
"eslint": "^8.47.0",
"mocha": "^10.2.0",
"rimraf": "^2.6.2",
"ts-node": "^10.4.0",
"typescript": "^5.5.4",
"typescript-parser": "^2.6.1"
},
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"build:clean": "yarn clean && yarn lint && yarn build",
"lint": "yarn eslint src/*.ts src/**/*.ts",
"lint:fix": "yarn eslint src/*.ts src/**/*.ts --fix",
"test": "mocha './**/*.spec.js' --exclude './node_modules/**' --exit",
"test:leeway": "yarn build && yarn test",
"test-debug": "mocha --inspect-brk './**/*.spec.js' --exclude './node_modules/**' --exit",
"watch": "leeway exec --package .:lib --transitive-dependencies --filter-type yarn --components --parallel -- tsc -w --preserveWatchOutput"
},
"mocha": {
"require": [
"ts-node/register",
"reflect-metadata/Reflect",
"source-map-support/register"
],
"extensions": [
"ts"
],
"exit": true
},
"dependencies": {
"@bufbuild/protobuf": "^1.3.3",
"@connectrpc/connect": "1.1.2",
"@types/react": "17.0.32",
"abort-controller-x": "^0.4.0",
"ajv": "^6.5.4",
"analytics-node": "^6.0.0",
"configcat-node": "^8.0.0",
"cookie": "^0.4.2",
"event-iterator": "^2.0.0",
"express": "^4.17.3",
"google-protobuf": "^3.19.1",
"inversify": "^6.0.1",
"jaeger-client": "^3.18.1",
"js-yaml": "^3.10.0",
"nice-grpc-common": "^2.0.0",
"opentracing": "^0.14.5",
"parse-duration": "^1.0.3",
"prom-client": "^14.2.0",
"random-number-csprng": "^1.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"reconnecting-websocket": "^4.4.0",
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.2",
"vscode-jsonrpc": "^5.0.1",
"vscode-uri": "^3.0.3",
"vscode-ws-jsonrpc": "^0.2.0",
"ws": "^7.4.6"
}
}