Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/ws-manager-bridge/package.json
2492 views
1
{
2
"private": true,
3
"name": "@gitpod/ws-manager-bridge",
4
"version": "0.1.5",
5
"license": "UNLICENSED",
6
"scripts": {
7
"start": "node ./dist/index.js",
8
"test": "mocha './**/*.spec.ts' --exclude './node_modules/**' --exit",
9
"lint": "yarn eslint src/*.ts src/**/*.ts",
10
"lint:fix": "yarn eslint src/*.ts src/**/*.ts --fix",
11
"build": "yarn lint && npx tsc",
12
"build:clean": "yarn clean && yarn build",
13
"rebuild": "yarn build:clean",
14
"build:watch": "watch 'yarn build' .",
15
"watch": "leeway exec --package .:app --transitive-dependencies --filter-type yarn --components --parallel -- yarn build -w --preserveWatchOutput",
16
"clean": "rimraf dist",
17
"clean:node": "rimraf node_modules",
18
"purge": "yarn clean && yarn clean:node && yarn run rimraf yarn.lock",
19
"debug": "nodemon -w ./dist --inspect=9300 ./dist/index.js",
20
"telepresence": "leeway run .:telepresence"
21
},
22
"mocha": {
23
"require": [
24
"ts-node/register",
25
"reflect-metadata/Reflect",
26
"source-map-support/register"
27
],
28
"extensions": [
29
"ts"
30
],
31
"exit": true
32
},
33
"files": [
34
"/dist"
35
],
36
"dependencies": {
37
"@gitpod/gitpod-db": "0.1.5",
38
"@gitpod/gitpod-protocol": "0.1.5",
39
"@gitpod/ws-daemon": "0.1.5",
40
"@gitpod/ws-manager": "0.1.5",
41
"@gitpod/ws-manager-bridge-api": "0.1.5",
42
"express": "^4.17.3",
43
"inversify": "^6.0.1",
44
"ioredis": "^5.3.2",
45
"prom-client": "^14.2.0",
46
"reflect-metadata": "^0.1.13"
47
},
48
"devDependencies": {
49
"@testdeck/mocha": "^0.3.3",
50
"@types/chai": "^4.2.21",
51
"@types/express": "^4.17.13",
52
"@types/google-protobuf": "^3.15.5",
53
"@types/mocha": "^10.0.1",
54
"@typescript-eslint/eslint-plugin": "^5.5.0",
55
"@typescript-eslint/parser": "^5.5.0",
56
"chai": "^4.3.4",
57
"eslint": "^8.47.0",
58
"expect": "^1.20.2",
59
"ioredis-mock": "^8.7.0",
60
"mocha": "^10.2.0",
61
"rimraf": "^3.0.2",
62
"ts-node": "^10.4.0",
63
"typescript": "~4.4.2",
64
"watch": "^1.0.2"
65
}
66
}
67
68