Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/supervisor/frontend/package.json
2496 views
1
{
2
"private": true,
3
"name": "@gitpod/supervisor-frontend",
4
"license": "UNLICENSED",
5
"version": "0.0.0",
6
"dependencies": {
7
"@gitpod/gitpod-protocol": "0.1.5",
8
"@gitpod/supervisor-api-grpc": "0.1.5",
9
"buffer": "^4.3.0",
10
"crypto-browserify": "3.12.0",
11
"process": "^0.11.10",
12
"stream-browserify": "^2.0.1",
13
"url": "^0.11.1",
14
"util": "^0.11.1",
15
"uuid": "8.3.2"
16
},
17
"devDependencies": {
18
"@types/sharedworker": "^0.0.29",
19
"@types/trusted-types": "^2.0.0",
20
"@types/uuid": "8.3.1",
21
"concurrently": "^6.2.1",
22
"copy-webpack-plugin": "^11.0.0",
23
"css-loader": "^6.8.1",
24
"source-map-loader": "^4.0.1",
25
"style-loader": "^3.3.3",
26
"typescript": "^5.5.4",
27
"webpack": "^5.88.2",
28
"webpack-cli": "^5.1.4"
29
},
30
"scripts": {
31
"build": "tsc && webpack --mode=production",
32
"watch": "concurrently \"tsc --watch --preserveWatchOutput\" \"webpack --mode=development\"",
33
"clean": "rm -rf lib && rm -rf dist"
34
}
35
}
36
37