42 lines
975 B
JSON
42 lines
975 B
JSON
{
|
|
"dependencies": {
|
|
"@types/express": "4.17.3",
|
|
"@types/node": "13.9.0",
|
|
"@types/socket.io": "2.1.4",
|
|
"express": "4.17.1",
|
|
"socket.io": "2.3.0",
|
|
"typescript": "3.8.3"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "4.2.3",
|
|
"lint-staged": "10.0.8",
|
|
"prettier": "1.19.1"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"license": "MIT",
|
|
"lint-staged": {
|
|
"*.{ts,md,json,yaml,yml}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"main": "index.js",
|
|
"name": "excalidraw-room",
|
|
"scripts": {
|
|
"build": "yarn gcp-build",
|
|
"deploy": "gcloud app deploy --project=excalidraw-room",
|
|
"fix": "yarn prettier --write",
|
|
"gcp-build": "tsc -p .",
|
|
"lint": "yarn prettier --list-different",
|
|
"prepare": "yarn gcp-build",
|
|
"pretest": "yarn gcp-build",
|
|
"prettier": "prettier \"**/*.{ts,md,json,yaml,yml}\"",
|
|
"start": "yarn build && node ./index.js",
|
|
"test": "yarn lint"
|
|
},
|
|
"version": "1.0.0"
|
|
}
|