-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 845 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 845 Bytes
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
{
"dependencies": {
"@hgraph.io/sdk": "0.8.7",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"esbuild": "^0.17.15",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"jest": "^29.6.1",
"prettier": "^3.6.2",
"ts-jest": "^29.1.1"
},
"scripts": {
"build": "node ./build.mjs",
"demo": "npm run build && node dist/index.js",
"demo:token": "npm run build && node dist/tokenInfo.js",
"demo:wrappers": "npm run build && node dist/ercWrappersDemo.js",
"demo:contractType": "npm run build && node dist/contractType.js",
"test": "jest --coverage",
"lint": "eslint . --ext .ts"
}
}