Update package

This commit is contained in:
Panayiotis Lipiridis 2021-01-18 23:18:55 +02:00
parent 254b8dabec
commit 9e268b9e03
2 changed files with 18 additions and 28 deletions

View File

@ -1,4 +1,6 @@
.gcloudignore .gcloudignore
.git .git
.gitignore .gitignore
.github/
node_modules/ node_modules/
src/

View File

@ -1,38 +1,26 @@
{ {
"name": "excalidraw-room", "name": "excalidraw-portal",
"version": "1.0.0", "dependencies": {
"description": "Excalidraw collaboration server", "@types/debug": "4.1.5",
"main": "index.js", "@types/express": "4.17.11",
"@types/node": "14.14.12",
"@types/socket.io": "2.1.4",
"debug": "4.3.1",
"express": "4.17.1",
"prettier": "2.2.1",
"socket.io": "2.3.0",
"typescript": "4.1.3"
},
"license": "MIT",
"main": "dist/index.js",
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"deploy": "yarn build && gcloud app deploy --project=excalidraw-portal",
"format": "yarn prettier --write", "format": "yarn prettier --write",
"lint": "yarn prettier --list-different", "lint": "yarn prettier --list-different",
"prettier": "prettier \"**/*.{ts,md,json,yaml,yml}\"", "prettier": "prettier \"**/*.{ts,md,json,yaml,yml}\"",
"start": "node dist/index.js", "start": "node dist/index.js",
"test": "yarn lint" "test": "yarn lint"
}, },
"repository": { "version": "1.0.0"
"type": "git",
"url": "git+https://github.com/excalidraw/excalidraw-room.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/excalidraw/excalidraw-room/issues"
},
"homepage": "https://github.com/excalidraw/excalidraw-room#readme",
"dependencies": {
"debug": "4.3.1",
"express": "4.17.1",
"prettier": "2.2.1",
"socket.io": "2.3.0"
},
"devDependencies": {
"@types/socket.io": "2.1.4",
"@types/debug": "4.1.5",
"@types/express": "4.17.11",
"@types/node": "14.14.12",
"typescript": "4.1.3"
}
} }