-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.54 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.54 KB
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
{
"name": "@hyperproof/hypersync-sdk",
"version": "6.0.0",
"description": "Hypersync SDK",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Hyperproof/hypersync-sdk.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "./node_modules/eslint/bin/eslint.js src/**/*.ts"
},
"engines": {
"node": "^22.0.0"
},
"dependencies": {
"@hyperproof/hypersync-models": "6.0.0",
"@hyperproof/integration-sdk": "6.0.0",
"@js-joda/core": "3.2.0",
"@js-joda/timezone": "2.5.0",
"abort-controller": "3.0.0",
"express": "4.21.2",
"html-entities": "2.5.2",
"http-errors": "2.0.0",
"http-status-codes": "2.3.0",
"jsonata": "1.8.7",
"jsonwebtoken": "9.0.2",
"lodash": "4.17.21",
"mime": "3.0.0",
"node-fetch": "2.7.0",
"query-string": "7.1.3",
"superagent": "10.1.0",
"uuid": "10.0.0",
"xss": "1.0.15",
"yup": "1.3.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/http-errors": "^2.0.0",
"@types/jsonwebtoken": "^9.0.0",
"@types/lodash": "^4.14.202",
"@types/mime": "^3.0.4",
"@types/node": "22.10.10",
"@types/node-fetch": "^2.6.13",
"@types/superagent": "^8.1.9",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"eslint": "8.57.1",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.1",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"files": [
"lib",
"package.json"
]
}