This repository was archived by the owner on Apr 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.37 KB
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
39
40
41
42
43
44
{
"name": "@oxheadalpha/composed-fa2-example",
"description": "Example of a composed and customized FA2 contract using @oxheadalpha/fa2-contracts",
"version": "2.0.0",
"keywords": [
"tezos",
"smart contracts",
"NFT",
"FA2",
"TZIP-12",
"TZIP-21"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oxheadalpha/composed-fa2-example.git"
},
"devDependencies": {
"@jest/types": "^27.5.1",
"@oxheadalpha/fa2-contracts": "^10.1.0",
"@oxheadalpha/tezos-tools": "^10.1.0",
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@oxheadalpha/fa2-interfaces": "^10.1.0",
"@taquito/signer": "^17.0.0",
"@taquito/taquito": "^17.0.0",
"bignumber.js": "^9.0.2"
},
"scripts": {
"clear": "yarn rimraf dist",
"generate:contract": "yarn tzgen contract my_contract.json base_ft_contract.mligo && yarn tzgen type-script my_contract.json base_ft_contract.ts",
"build:contract": "yarn tzgen michelson tzfa2_contract tzfa2_contract --main TzFa2",
"build:ts": "tsc -p .",
"build": "yarn clear && yarn generate:contract && yarn build:contract && yarn build:ts",
"test": "(yarn start-sandbox && jest --runInBand --bail) ; yarn kill-sandbox"
}
}