-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 1.03 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
{
"name": "algo-did",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"compile-contract": "tealscript contracts/algo-did.algo.ts contracts/artifacts",
"generate-client": "algokitgen generate -a contracts/artifacts/AlgoDID.json -o contracts/clients/AlgoDIDClient.ts",
"build": "npm run compile-contract",
"test": "npm run build && jest",
"lint": "eslint . --ext .ts",
"fix": "eslint . --ext .ts --fix"
},
"dependencies": {
"@algorandfoundation/algokit-utils": "^5.1.3",
"@algorandfoundation/tealscript": "^0.51.1",
"algosdk": "^2.6.0"
},
"devDependencies": {
"@algorandfoundation/algokit-client-generator": "^2.2.1",
"@jest/globals": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "5.0.2"
}
}