Path: blob/main/components/gitpod-protocol/package.json
2492 views
{1"name": "@gitpod/gitpod-protocol",2"version": "0.1.5",3"license": "UNLICENSED",4"main": "./lib/index.js",5"types": "./lib/index.d.ts",6"files": [7"lib",8"data/*.json",9"src"10],11"devDependencies": {12"@grpc/grpc-js": "1.12.6",13"@testdeck/mocha": "^0.3.3",14"@types/analytics-node": "^3.1.9",15"@types/chai-subset": "^1.3.3",16"@types/cookie": "^0.4.1",17"@types/express": "^4.17.13",18"@types/google-protobuf": "^3.15.5",19"@types/jaeger-client": "^3.18.3",20"@types/js-yaml": "^3.10.1",21"@types/mocha": "^10.0.1",22"@types/node": "^18.18.8",23"@types/random-number-csprng": "^1.0.0",24"@types/uuid": "^8.3.1",25"@types/ws": "^5.1.2",26"@typescript-eslint/eslint-plugin": "^5.5.0",27"@typescript-eslint/parser": "^5.5.0",28"chai": "^4.3.4",29"chai-subset": "^1.6.0",30"eslint": "^8.47.0",31"mocha": "^10.2.0",32"rimraf": "^2.6.2",33"ts-node": "^10.4.0",34"typescript": "^5.5.4",35"typescript-parser": "^2.6.1"36},37"scripts": {38"clean": "rimraf lib",39"build": "tsc",40"build:clean": "yarn clean && yarn lint && yarn build",41"lint": "yarn eslint src/*.ts src/**/*.ts",42"lint:fix": "yarn eslint src/*.ts src/**/*.ts --fix",43"test": "mocha './**/*.spec.js' --exclude './node_modules/**' --exit",44"test:leeway": "yarn build && yarn test",45"test-debug": "mocha --inspect-brk './**/*.spec.js' --exclude './node_modules/**' --exit",46"watch": "leeway exec --package .:lib --transitive-dependencies --filter-type yarn --components --parallel -- tsc -w --preserveWatchOutput"47},48"mocha": {49"require": [50"ts-node/register",51"reflect-metadata/Reflect",52"source-map-support/register"53],54"extensions": [55"ts"56],57"exit": true58},59"dependencies": {60"@bufbuild/protobuf": "^1.3.3",61"@connectrpc/connect": "1.1.2",62"@types/react": "17.0.32",63"abort-controller-x": "^0.4.0",64"ajv": "^6.5.4",65"analytics-node": "^6.0.0",66"configcat-node": "^8.0.0",67"cookie": "^0.4.2",68"event-iterator": "^2.0.0",69"express": "^4.17.3",70"google-protobuf": "^3.19.1",71"inversify": "^6.0.1",72"jaeger-client": "^3.18.1",73"js-yaml": "^3.10.0",74"nice-grpc-common": "^2.0.0",75"opentracing": "^0.14.5",76"parse-duration": "^1.1.2",77"prom-client": "^14.2.0",78"random-number-csprng": "^1.0.2",79"react": "17.0.2",80"react-dom": "17.0.2",81"reconnecting-websocket": "^4.4.0",82"reflect-metadata": "^0.1.13",83"uuid": "^8.3.2",84"vscode-jsonrpc": "^5.0.1",85"vscode-uri": "^3.0.3",86"vscode-ws-jsonrpc": "^0.2.0",87"ws": "^7.4.6"88}89}909192