Files
speckle-server/packages/webhook-service/package.json
T
Iain Sproat ee50b32b59 chore(node): upgrades to node 18 (#1189)
* chore(node): upgrades to node 18

Node 16 was out of support (but not security upgrades), so bumping to next stable version.

https://github.com/specklesystems/speckle-server/issues/1187

* Update server liveness and readiness probes for node 18
* Bump web-ifc to 0.0.36
* Apply `--no-experimental-fetch` flag to fileimport-service to prevent issues in web-ifc (via emscripten) with node 18
2022-12-06 12:57:48 +00:00

38 lines
1001 B
JSON

{
"name": "@speckle/webhook-service",
"private": true,
"version": "2.5.4",
"description": "Component to handle calling external webhooks",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/specklesystems/speckle-server.git"
},
"bugs": {
"url": "https://github.com/specklesystems/speckle-server/issues"
},
"homepage": "https://github.com/specklesystems/speckle-server#readme",
"engines": {
"node": "^18.12.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env ALLOW_LOCAL_NETWORK=true node src/main.js",
"lint": "eslint . --ext .js,.ts"
},
"dependencies": {
"@speckle/shared": "workspace:^",
"knex": "^2.0.0",
"node-fetch": "^2.6.1",
"pg": "^8.7.3",
"private-ip": "^2.3.3",
"prom-client": "^14.0.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.5.1"
}
}