2018-10-02 17:42:09 +03:00
|
|
|
{
|
|
|
|
|
"name": "thingsboard-web-ui",
|
|
|
|
|
"private": true,
|
2019-12-10 15:25:03 +02:00
|
|
|
"version": "2.5.0",
|
2018-10-02 17:42:09 +03:00
|
|
|
"description": "ThingsBoard Web UI Microservice",
|
|
|
|
|
"main": "server.js",
|
|
|
|
|
"bin": "server.js",
|
|
|
|
|
"scripts": {
|
2019-07-24 11:25:00 +03:00
|
|
|
"install": "pkg -t node10-linux-x64,node10-win-x64 --out-path ./target . && node install.js",
|
2018-10-02 17:42:09 +03:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
|
|
|
"start": "WEB_FOLDER=./target/web nodemon server.js",
|
|
|
|
|
"start-prod": "NODE_ENV=production nodemon server.js"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2018-11-28 16:46:49 +02:00
|
|
|
"compression": "^1.7.3",
|
2019-07-24 13:27:39 +03:00
|
|
|
"config": "^3.2.2",
|
2018-10-02 17:42:09 +03:00
|
|
|
"connect-history-api-fallback": "^1.5.0",
|
|
|
|
|
"express": "^4.16.3",
|
|
|
|
|
"http": "0.0.0",
|
|
|
|
|
"http-proxy": "^1.17.0",
|
|
|
|
|
"js-yaml": "^3.12.0",
|
|
|
|
|
"winston": "^3.0.0",
|
|
|
|
|
"winston-daily-rotate-file": "^3.2.1"
|
|
|
|
|
},
|
2019-07-24 11:25:00 +03:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=8.0.0 <11.0.0"
|
|
|
|
|
},
|
2018-10-02 17:42:09 +03:00
|
|
|
"nyc": {
|
|
|
|
|
"exclude": [
|
|
|
|
|
"test",
|
|
|
|
|
"__tests__",
|
|
|
|
|
"node_modules",
|
|
|
|
|
"target"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"fs-extra": "^6.0.1",
|
|
|
|
|
"nodemon": "^1.17.5",
|
2019-07-24 11:25:00 +03:00
|
|
|
"pkg": "^4.4.0"
|
2019-07-24 13:27:39 +03:00
|
|
|
},
|
|
|
|
|
"pkg": {
|
|
|
|
|
"assets": [
|
|
|
|
|
"node_modules/config/**/*.*"
|
|
|
|
|
]
|
2018-10-02 17:42:09 +03:00
|
|
|
}
|
|
|
|
|
}
|