2021-04-03 17:46:54 +00:00
|
|
|
{
|
2021-07-02 10:37:02 +00:00
|
|
|
"name": "@deemix-gui/deemix-server",
|
2021-06-02 15:52:14 +00:00
|
|
|
"version": "0.1.0",
|
2021-06-01 20:56:01 +00:00
|
|
|
"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 10:37:02 +00:00
|
|
|
"bin": "./dist/main.js",
|
|
|
|
"pkg": {
|
|
|
|
"scripts": "./dist/**/*.js",
|
|
|
|
"assets": "../webui/public/**/*",
|
|
|
|
"targets": [ "node16-linux-x64", "node16-win-x64", "node16-macos-x64"]
|
2021-06-01 20:56:01 +00:00
|
|
|
}
|
2021-04-03 17:46:54 +00:00
|
|
|
}
|