-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.03 KB
/
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
33
34
35
36
37
38
39
{
"name": "ux4iot-admin-node",
"version": "4.1.4",
"description": "The Admin SDK for ux4iot",
"repository": {
"type": "git",
"url": "https://github.com/deviceinsight/ux4iot-admin-node"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.json",
"watch": "tsc --w",
"lint:fix": "eslint --ignore-path='./.gitignore' '*/**/*.ts' --quiet --fix",
"lint": "eslint --ignore-path='./.gitignore' '*/**/*.ts'",
"prettier": "prettier --ignore-path=./.gitignore --write '*/**/*.ts'",
"test": "jest --passWithNoTests"
},
"dependencies": {
"axios": "^1.7.4",
"azure-iothub": "^1.16.5"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"dotenv": "^10.0.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^29.3.1",
"prettier": "^2.3.2",
"ts-jest": "^29.0.5",
"typescript": "^4.3.5"
}
}