-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.38 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
38
{
"name": "Challenge",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"generate-client": "algokitgen generate -a contracts/artifacts/Challenge.json -o contracts/clients/ChallengeClient.ts",
"compile-contract": "tealscript contracts/Challenge.algo.ts contracts/artifacts",
"generate-components": "algokit-generate-component contracts/artifacts/Challenge.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": "^5.0.1",
"algosdk": "^2.4.0",
"dotenv": "^16.3.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@algorandfoundation/algokit-client-generator": "^2.2.6",
"@algorandfoundation/tealscript": "^0.59.0",
"@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",
"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"
}
}