code-server/package.json

53 lines
1.8 KiB
JSON
Raw Normal View History

2019-01-08 00:46:19 +00:00
{
2019-02-05 21:26:57 +00:00
"name": "@coder/vscode-remote",
"repository": "https://github.com/codercom/vscode-remote",
2019-01-08 00:46:19 +00:00
"author": "Coder",
2019-02-05 20:56:02 +00:00
"license": "MIT",
2019-02-05 21:26:57 +00:00
"description": "Run VS Code remotely.",
2019-01-08 00:46:19 +00:00
"scripts": {
"build:rules": "cd ./rules && tsc -p .",
2019-01-08 00:46:19 +00:00
"vscode:clone": "mkdir -p ./lib && test -d ./lib/vscode || git clone https://github.com/Microsoft/vscode/ ./lib/vscode",
"vscode:install": "cd ./lib/vscode && git checkout tags/1.30.1 && yarn",
"vscode": "npm-run-all vscode:*",
"packages:install": "cd ./packages && yarn",
"postinstall": "npm-run-all --parallel vscode packages:install build:rules",
"start": "cd ./packages/server && yarn start",
2019-01-08 00:46:19 +00:00
"test": "cd ./packages && yarn test"
},
"devDependencies": {
2019-01-11 17:49:56 +00:00
"@types/node": "^10.12.18",
2019-01-12 00:11:34 +00:00
"crypto-browserify": "^3.12.0",
"css-loader": "^2.1.0",
"file-loader": "^3.0.1",
"fork-ts-checker-webpack-plugin": "^0.5.2",
"happypack": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"http-browserify": "^1.7.0",
"ignore-loader": "^0.1.2",
2019-01-12 00:11:34 +00:00
"mini-css-extract-plugin": "^0.5.0",
2019-01-11 18:58:25 +00:00
"node-sass": "^4.11.0",
2019-01-11 17:49:56 +00:00
"npm-run-all": "^4.1.5",
2019-01-12 00:11:34 +00:00
"preload-webpack-plugin": "^3.0.0-beta.2",
"sass-loader": "^7.1.0",
"string-replace-loader": "^2.1.1",
2019-01-12 00:11:34 +00:00
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
2019-01-12 00:11:34 +00:00
"typescript": "^3.2.2",
"typescript-tslint-plugin": "^0.2.1",
2019-01-12 00:11:34 +00:00
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.4",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.1",
"webpack-dev-middleware": "^3.5.0",
2019-01-12 00:11:34 +00:00
"webpack-dev-server": "^3.1.14",
"webpack-hot-middleware": "^2.24.3",
2019-01-12 00:11:34 +00:00
"write-file-webpack-plugin": "^4.5.0"
},
"dependencies": {
"node-loader": "^0.6.0",
"webpack-merge": "^4.2.1"
2019-01-08 00:46:19 +00:00
}
}