spiegel-keyman/developer/server/package.json
Marc Durdin 2c01b19f69 chore: cleanup
1. Renamed form UfrmNGrokOptions to UfrmServerOptions
2. Renamed kmdev-server to just plain server
3. Tidied up npm versioning to use VERSION_WITH_TAG

This last point should help avoid confusion as now only CI release
builds will ever generate a package.json with a.b.c, a.b.c-alpha or
a.b.c-beta. Local and test builds will always have the corresponding
-test or -local environment appended. This also helps avoid issues if
we accidentally publish an incorrect version.
2021-12-22 06:25:22 +11:00

31 lines
892 B
JSON

{
"name": "@keymanapp/developer-server",
"version": "15.0.171-alpha-local",
"description": "Keyman Developer backend server",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"postbuild": "copyfiles -u 1 \"src/site/**\" \"dist/\" && copyfiles -u 1 \"src/trayicon/**\" \"dist/\"",
"prod": "node .",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm run postbuild && tsc-watch --onSuccess \"node .\" --onFailure \"node .\""
},
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.17.2",
"multer": "^1.4.4",
"ngrok": "^4.2.2",
"ws": "^8.3.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.0",
"@types/ws": "^8.2.2",
"copyfiles": "^2.4.1",
"ts-node": "^10.4.0",
"tsc-watch": "^4.5.0",
"typescript": "^4.5.4"
}
}