forked from hiero-ledger/hiero-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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": "@hashgraph/examples",
"private": true,
"type": "module",
"scripts": {
"compile": "echo hello",
"lint": "run-s lint:*",
"lint:types": "tsc",
"lint:format": "prettier '*.js' '*.json' --check",
"lint:js": "eslint --fix '*.js' '*.json'",
"format": "prettier '*.js' '*.json' --write"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@hashgraph/sdk": "link:..",
"axios": "^1.6.4",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"dpdm": "^3.13.1",
"eslint": "^8.49.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-node": "^11.1.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"typedoc": "^0.25.1",
"typescript": "^5.1.6"
}
}