-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.37 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": "arc59",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"generate-client": "algokit generate client contracts/artifacts/ --language typescript --output contracts/clients/{contract_name}Client.ts",
"compile-contract": "tealscript contracts/*.algo.ts contracts/artifacts",
"generate-components": "algokit-generate-component contracts/artifacts/Arc59.arc32.json contracts/artifacts/components",
"build": "npm run compile-contract && npm run generate-client",
"test": "npm run build && jest",
"lint": "eslint . --ext .ts",
"fix": "eslint . --ext .ts --fix"
},
"dependencies": {
"@algorandfoundation/algokit-utils": "^6.0.2",
"@algorandfoundation/tealscript": "^0.90.3",
"algosdk": "^2.7.0"
},
"devDependencies": {
"@algorandfoundation/algokit-client-generator": "^2.3.1",
"@jest/globals": "^29.5.0",
"@joe-p/algokit-generate-component": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"dotenv": "^16.4.5",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.5.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.0",
"typescript": "5.0.2"
}
}