2018-10-02 17:42:09 +03:00
|
|
|
{
|
|
|
|
|
"name": "thingsboard-web-ui",
|
|
|
|
|
"private": true,
|
2021-09-06 18:55:10 +03:00
|
|
|
"version": "3.3.2",
|
2018-10-02 17:42:09 +03:00
|
|
|
"description": "ThingsBoard Web UI Microservice",
|
|
|
|
|
"main": "server.js",
|
|
|
|
|
"bin": "server.js",
|
|
|
|
|
"scripts": {
|
2020-08-28 12:59:19 +03:00
|
|
|
"install": "pkg -t node12-linux-x64,node12-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": {
|
2020-08-28 12:59:19 +03:00
|
|
|
"compression": "^1.7.4",
|
|
|
|
|
"config": "^3.3.1",
|
|
|
|
|
"connect-history-api-fallback": "^1.6.0",
|
|
|
|
|
"express": "^4.17.1",
|
2018-10-02 17:42:09 +03:00
|
|
|
"http": "0.0.0",
|
2020-08-28 12:59:19 +03:00
|
|
|
"http-proxy": "^1.18.1",
|
|
|
|
|
"js-yaml": "^3.14.0",
|
|
|
|
|
"winston": "^3.3.3",
|
|
|
|
|
"winston-daily-rotate-file": "^4.5.0"
|
2018-10-02 17:42:09 +03:00
|
|
|
},
|
2019-07-24 11:25:00 +03:00
|
|
|
"engines": {
|
2020-08-28 12:59:19 +03:00
|
|
|
"node": ">=12.0.0 <14.0.0"
|
2019-07-24 11:25:00 +03:00
|
|
|
},
|
2018-10-02 17:42:09 +03:00
|
|
|
"nyc": {
|
|
|
|
|
"exclude": [
|
|
|
|
|
"test",
|
|
|
|
|
"__tests__",
|
|
|
|
|
"node_modules",
|
|
|
|
|
"target"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2021-09-08 18:57:31 +03:00
|
|
|
"fs-extra": "^10.0.0",
|
|
|
|
|
"nodemon": "^2.0.12",
|
|
|
|
|
"pkg": "^5.3.1"
|
2019-07-24 13:27:39 +03:00
|
|
|
},
|
|
|
|
|
"pkg": {
|
|
|
|
|
"assets": [
|
|
|
|
|
"node_modules/config/**/*.*"
|
|
|
|
|
]
|
2018-10-02 17:42:09 +03:00
|
|
|
}
|
|
|
|
|
}
|