-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
58 lines (58 loc) · 1.88 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@zwave-js/firmware-updates",
"version": "0.0.1",
"description": "The firmware update service for Z-Wave JS",
"repository": "https://github.com/zwave-js/firmware-updates",
"author": "Dominic Griesel <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"check": "tsc -p tsconfig.build.json --noEmit && tsc -p src/maintenance/tsconfig.json --noEmit",
"lint": "eslint .",
"test:ci": "NODE_OPTIONS='--loader=tsx' ava",
"test": "yarn test:ci",
"dev": "wrangler dev",
"build:index": "yarn tsx src/maintenance/generateIndex.ts",
"upload": "yarn tsx src/maintenance/upload.ts"
},
"dependencies": {
"itty-router": "^2.6.1",
"itty-router-extras": "^0.4.2",
"json-logic-js": "^2.0.2",
"json5": "^2.2.3",
"path-browserify": "^1.0.1",
"semver": "^7.5.2",
"zod": "^3.19.1"
},
"devDependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"@cloudflare/workers-types": "^4.20240821.1",
"@tsconfig/node16": "^1.0.3",
"@types/eslint": "^8.4.6",
"@types/itty-router-extras": "^0.4.0",
"@types/json-logic-js": "^2.0.1",
"@types/node": "^18.7.18",
"@types/path-browserify": "^1.0.0",
"@types/prettier": "^2.7.0",
"@types/semver": "^7.3.12",
"@types/source-map-support": "^0.5.6",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@zwave-js/firmware-integrity": "^1.0.2",
"ava": "^4.3.3",
"axios": "^0.27.2",
"esbuild": "^0.15.7",
"esbuild-register": "^3.3.3",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"tsx": "^3.13.0",
"typescript": "~4.7.4",
"wrangler": "^3.73.0",
"zod-to-json-schema": "^3.17.1"
},
"packageManager": "[email protected]"
}