This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.24 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "omnia-gateway",
"version": "0.0.1",
"description": "Node.js Omnia Gateway implementation",
"engines": {
"node": ">=16"
},
"license": "MIT",
"type": "module",
"workspaces": [
"./packages/core",
"./packages/ic",
"./packages/proxy-client"
],
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@types/babel__core": "^7.20.0",
"@types/babel__generator": "^7.6.4",
"@types/express": "^4.17.15",
"@types/hdkey": "^2.0.1",
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "~27.0.2",
"@types/node": "~16.11.6",
"@types/node-fetch": "^2.6.3",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"@typescript-eslint/parser": "~5.3.0",
"babel-jest": "^29.5.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "~25.2.2",
"eslint-plugin-workspaces": "^0.9.0",
"http-proxy-cli": "^2.1.0",
"jest": "^28.1.3",
"license-checker": "^25.0.1",
"patch-package": "^7.0.0",
"prettier": "~2.4.1",
"remote": "^0.2.6",
"rimraf": "~3.0.2",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"tsutils": "~3.21.0",
"typescript": "~4.4.4",
"wot-thing-description-types": "^1.1.0-23-March-2023",
"xml-js": "^1.6.11"
},
"scripts": {
"postinstall": "patch-package",
"start": "node build/src/main.js",
"build-and-start": "npm run build && npm run start",
"clean": "rimraf coverage build tmp tsconfig.tsbuildinfo packages/*/tsconfig.tsbuildinfo packages/*/lib/",
"prebuild": "npm run build --workspaces",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "npm run lint --workspaces && eslint . --ext .ts --ext .mts",
"test": "jest",
"test:coverage": "jest --coverage",
"prettier": "npm run prettier --workspaces && prettier --config .prettierrc --write . '!./volumes'",
"test:watch": "jest --watch",
"generate:matter-clusters": "OUTPUT_JSON_FILE_PATH=./matter/clusters.json npx ts-node --esm ./scripts/ts/generate-matter-clusters.ts",
"generate:matter-wot-mapping": "CLUSTERS_JSON_FILE_PATH=./matter/clusters.json MATTER_WOT_MAPPING_FILE_PATH=./matter/wot-mapping.json npx ts-node --esm ./scripts/ts/generate-matter-wot-mapping.ts",
"report:licenses": "license-checker --summary"
},
"dependencies": {
"@dfinity/agent": "^0.16.0",
"@dfinity/identity-secp256k1": "^0.16.0",
"@dfinity/principal": "^0.16.0",
"@node-wot/binding-http": "^0.8.7",
"@node-wot/core": "^0.8.7",
"@omnia-gateway/core": "^0.0.1",
"@omnia-gateway/ic": "^0.0.1",
"@omnia-gateway/proxy-client": "^0.0.1",
"@project-chip/matter.js": "^0.2.1",
"bip39": "^3.1.0",
"dotenv": "^16.3.1",
"hdkey": "^2.1.0",
"lowdb": "4.0.1",
"node-fetch": "^3.3.1",
"tweetnacl": "^1.0.3",
"uuid": "^9.0.0",
"winston": "^3.9.0",
"wot-typescript-definitions": "0.8.0-SNAPSHOT.23",
"ws": "^8.13.0"
}
}