-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1012 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "tb-device-emulator",
"version": "1.0.0",
"main": "server.js",
"repository": "https://github.com/AlexandreHiroyuki/ThingsBoardDeviceSimulator.git",
"author": "AlexandreHiroyuki <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "SET \"NODE_ENV=dev\" && nodemon src/server.ts",
"build": "SET \"NODE_ENV=prod\" && sucrase ./src -d ./dist --transforms typescript,imports"
},
"devDependencies": {
"@types/node": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"sucrase": "^3.21.0",
"typescript": "^4.6.4"
},
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.0.1"
}
}