-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.21 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
{
"name": "se.hjonhed.robonect",
"version": "1.0.0",
"main": "app.ts",
"scripts": {
"generate-json-schema": "typescript-json-schema --required lib/StatusResponse.ts StatusResponse -o lib/gen/robonectSchema.json",
"build": "npm run generate-json-schema && tsc",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"lint-fix": "eslint --ext .js,.ts --ignore-path .gitignore --fix .",
"format": "prettier --write \"**/*.+(js|ts|json)\"",
"format-check": "prettier --check \"**/*.+(js|ts|json)\"",
"test": "jest --coverage"
},
"devDependencies": {
"@tsconfig/node12": "^12.1.0",
"@types/homey": "npm:homey-apps-sdk-v3-types@^0.3.4",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.1",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.6.2",
"nock": "^13.3.2",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6",
"typescript-eslint": "^7.4.0",
"typescript-json-schema": "^0.62.0"
},
"dependencies": {
"ajv": "^8.12.0",
"homey-log": "^2.1.0",
"moment": "^2.29.4",
"typed-rest-client": "^1.8.11"
}
}