thingsboard/msa/web-ui/package.json

49 lines
1.1 KiB
JSON
Raw Normal View History

2018-10-02 17:42:09 +03:00
{
"name": "thingsboard-web-ui",
"private": true,
2022-02-21 12:19:59 +02:00
"version": "3.4.0",
2018-10-02 17:42:09 +03:00
"description": "ThingsBoard Web UI Microservice",
"main": "server.js",
"bin": "server.js",
"scripts": {
2022-06-15 12:07:08 +03:00
"pkg": "pkg -t node16-linux-x64,node16-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": {
"compression": "^1.7.4",
2022-06-13 18:06:32 +03:00
"config": "^3.3.7",
"connect-history-api-fallback": "^1.6.0",
2022-06-13 18:06:32 +03:00
"express": "^4.18.1",
2018-10-02 17:42:09 +03:00
"http": "0.0.0",
"http-proxy": "^1.18.1",
2022-06-13 18:06:32 +03:00
"js-yaml": "^4.1.0",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.7.1"
2018-10-02 17:42:09 +03:00
},
"nyc": {
"exclude": [
"test",
"__tests__",
"node_modules",
"target"
]
},
"devDependencies": {
2022-06-13 18:06:32 +03:00
"fs-extra": "^10.1.0",
"nodemon": "^2.0.16",
"pkg": "^5.7.0"
},
"pkg": {
"assets": [
"node_modules/config/**/*.*"
]
2022-06-13 18:06:32 +03:00
},
"resolutions": {
"color-string": "^1.5.5",
"follow-redirects": "^1.14.8",
"minimist": "^1.2.6"
2018-10-02 17:42:09 +03:00
}
}