deemix-gui/server/package.json

22 lines
541 B
JSON
Raw Normal View History

{
2021-07-02 12:37:02 +02:00
"name": "@deemix-gui/deemix-server",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "nodemon src/app.ts",
"start-build": "node dist/app.js",
"lint": "eslint \"./{src, tests}/**\" --fix",
"lint-build": "eslint \"./src/**\" --fix",
"prebuild": "yarn lint-build",
"build": "tsc",
"test": "jest",
"test-watch": "jest --watch"
},
2021-07-02 12:37:02 +02:00
"bin": "./dist/main.js",
"pkg": {
"scripts": "./dist/**/*.js",
"assets": "../webui/public/**/*",
"targets": [ "node16-linux-x64", "node16-win-x64", "node16-macos-x64"]
}
}