22 lines
541 B
JSON
22 lines
541 B
JSON
{
|
|
"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"
|
|
},
|
|
"bin": "./dist/main.js",
|
|
"pkg": {
|
|
"scripts": "./dist/**/*.js",
|
|
"assets": "../webui/public/**/*",
|
|
"targets": [ "node16-linux-x64", "node16-win-x64", "node16-macos-x64"]
|
|
}
|
|
}
|