fix tsc missing

This commit is contained in:
Flam3rboy 2021-04-07 15:54:21 +02:00
parent e2078a3207
commit 193e3f5a2c
2 changed files with 3 additions and 2 deletions

BIN
package-lock.json generated

Binary file not shown.

View File

@ -6,8 +6,8 @@
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build:util && npm run build && node dist/", "start": "npm run build:util && npm run build && node dist/",
"build": "tsc -b .", "build": "npx tsc -b .",
"build:util": "tsc -b ./node_modules/fosscord-server-util/" "build:util": "npx tsc -b ./node_modules/fosscord-server-util/"
}, },
"keywords": [], "keywords": [],
"author": "", "author": "",
@ -21,6 +21,7 @@
"lambert-server": "^1.1.7", "lambert-server": "^1.1.7",
"missing-native-js-functions": "^1.2.3", "missing-native-js-functions": "^1.2.3",
"node-fetch": "^2.6.1", "node-fetch": "^2.6.1",
"typescript": "^4.2.3",
"uuid": "^8.3.2", "uuid": "^8.3.2",
"ws": "^7.4.2" "ws": "^7.4.2"
}, },