forked from hashgraph/hedera-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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": ">=10.17.0"
},
"dependencies": {
"@hashgraph/sdk": "link:..",
"axios": "^0.27.2",
"dotenv": "^14.3.2"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"dpdm": "^3.9.0",
"eslint": "^8.13.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^37.9.7",
"eslint-plugin-node": "^11.1.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"typedoc": "^0.22.15",
"typescript": "^4.6.3"
}
}