2018-09-27 12:15:48 +03:00
|
|
|
{
|
|
|
|
|
"name": "thingsboard-js-executor",
|
|
|
|
|
"private": true,
|
2024-12-04 16:51:03 +02:00
|
|
|
"version": "4.0.0",
|
2018-09-27 12:15:48 +03:00
|
|
|
"description": "ThingsBoard JavaScript Executor Microservice",
|
2022-07-07 12:43:22 +03:00
|
|
|
"main": "server.ts",
|
2018-09-27 12:15:48 +03:00
|
|
|
"bin": "server.js",
|
|
|
|
|
"scripts": {
|
2024-11-04 13:03:25 +02:00
|
|
|
"pkg": "tsc && pkg -t node18-linux-x64,node18-win-x64 --out-path ./target ./target/src && node install.js",
|
2018-09-27 12:15:48 +03:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
2022-07-07 14:06:55 +03:00
|
|
|
"start": "nodemon --watch '.' --ext 'ts' --exec 'ts-node server.ts'",
|
|
|
|
|
"start-prod": "nodemon --watch '.' --ext 'ts' --exec 'NODE_ENV=production ts-node server.ts'",
|
2022-07-07 12:43:22 +03:00
|
|
|
"build": "tsc"
|
2018-09-27 12:15:48 +03:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-11-04 13:03:25 +02:00
|
|
|
"config": "^3.3.12",
|
|
|
|
|
"express": "^4.21.1",
|
2022-06-14 11:18:24 +03:00
|
|
|
"js-yaml": "^4.1.0",
|
2024-11-04 13:03:25 +02:00
|
|
|
"kafkajs": "^2.2.4",
|
|
|
|
|
"long": "^5.2.3",
|
2020-08-28 12:59:19 +03:00
|
|
|
"uuid-parse": "^1.1.0",
|
2024-11-04 13:03:25 +02:00
|
|
|
"winston": "^3.16.0",
|
|
|
|
|
"winston-daily-rotate-file": "^5.0.0"
|
2018-09-27 12:15:48 +03:00
|
|
|
},
|
|
|
|
|
"nyc": {
|
|
|
|
|
"exclude": [
|
|
|
|
|
"test",
|
|
|
|
|
"__tests__",
|
|
|
|
|
"node_modules",
|
|
|
|
|
"target"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-11-04 13:03:25 +02:00
|
|
|
"@types/config": "^3.3.5",
|
2024-11-04 13:21:06 +02:00
|
|
|
"@types/express": "~4.17.21",
|
2024-11-04 13:03:25 +02:00
|
|
|
"@types/node": "~20.17.6",
|
|
|
|
|
"@types/uuid-parse": "^1.0.2",
|
|
|
|
|
"fs-extra": "^11.2.0",
|
|
|
|
|
"nodemon": "^3.1.7",
|
|
|
|
|
"pkg": "^5.8.1",
|
|
|
|
|
"ts-node": "^10.9.2",
|
|
|
|
|
"typescript": "5.5.4"
|
2019-07-24 13:27:39 +03:00
|
|
|
},
|
|
|
|
|
"pkg": {
|
|
|
|
|
"assets": [
|
|
|
|
|
"node_modules/config/**/*.*"
|
|
|
|
|
]
|
2018-09-27 12:15:48 +03:00
|
|
|
}
|
|
|
|
|
}
|