e8174095ca
* Add windows support * Improve multi-platform support * Install with network-concurrency 1 * Use file-glob to upload windows binary * Don't install packages in parallel if on windows * Rename vscode-remote to code-server * Add output at intervals so CI doesn't kill build * Update all tasks to provide timed output * Don't perform tasks sync otherwise we can't log
39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"name": "server",
|
|
"main": "./out/cli.js",
|
|
"bin": "./out/cli.js",
|
|
"files": [],
|
|
"scripts": {
|
|
"start": "node --max-old-space-size=32384 --require ts-node/register --require tsconfig-paths/register src/cli.ts",
|
|
"build": "rm -rf ./out && cross-env CLI=true UV_THREADPOOL_SIZE=100 node --max-old-space-size=32384 ../../node_modules/webpack/bin/webpack.js --config ./webpack.config.js",
|
|
"build:nexe": "node scripts/nexe.js"
|
|
},
|
|
"dependencies": {
|
|
"@oclif/config": "^1.10.4",
|
|
"@oclif/errors": "^1.2.2",
|
|
"@oclif/plugin-help": "^2.1.4",
|
|
"express": "^4.16.4",
|
|
"express-static-gzip": "^1.1.3",
|
|
"httpolyglot": "^0.1.2",
|
|
"mime-types": "^2.1.21",
|
|
"node-netstat": "^1.6.0",
|
|
"pem": "^1.14.1",
|
|
"promise.prototype.finally": "^3.1.0",
|
|
"ws": "^6.1.2",
|
|
"xhr2": "^0.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.16.0",
|
|
"@types/fs-extra": "^5.0.4",
|
|
"@types/mime-types": "^2.1.0",
|
|
"@types/pem": "^1.9.4",
|
|
"@types/ws": "^6.0.1",
|
|
"fs-extra": "^7.0.1",
|
|
"nexe": "^2.0.0-rc.34",
|
|
"string-replace-webpack-plugin": "^0.1.3",
|
|
"ts-node": "^7.0.1",
|
|
"tsconfig-paths": "^3.7.0",
|
|
"typescript": "^3.2.2"
|
|
}
|
|
}
|