websocket-canvas/package.json

24 lines
618 B
JSON
Raw Permalink Normal View History

2021-08-24 17:21:14 +00:00
{
"name": "canvas",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -p ./",
"watch": "tsc -watch -p ./",
"serve": "serve -l 8080 .",
"debug": "npm-run-all --parallel watch serve",
"test": "echo \"Error: no test specified\" && exit 1",
"run-server": "cd server && npm run launch",
2021-08-26 19:38:09 +00:00
"launch": "npm install && npm-run-all --parallel run-server build serve"
2021-08-24 17:21:14 +00:00
},
"author": "",
"license": "ISC",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"npm-run-all": "^4.1.5",
"serve": "^12.0.0",
"typescript": "^4.3.5"
}
}