-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
20 lines (20 loc) · 924 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "vis-streaming",
"version": "1.0.0",
"description": "",
"main": "main.ts",
"dependencies": {
"esbuild": "^0.11.4",
"http-server": "^13.0.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "./node_modules/.bin/esbuild main.ts --bundle --sourcemap --outfile=bundle.js",
"admin-compile": "./node_modules/.bin/esbuild main-admin.ts --bundle --sourcemap --outfile=admin-bundle.js",
"playback-compile": "./node_modules/.bin/esbuild playback.ts --bundle --sourcemap --outfile=playback-bundle.js",
"compile-all": "./node_modules/.bin/esbuild main.ts --bundle --sourcemap --outfile=bundle.js && ./node_modules/.bin/esbuild main-admin.ts --bundle --sourcemap --outfile=admin-bundle.js && ./node_modules/.bin/esbuild playback.ts --bundle --sourcemap --outfile=playback-bundle.js",
"http": "http-server"
},
"author": "",
"license": "ISC"
}