-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.51 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "wtez-fa2",
"version": "1.0.0",
"description": "Wrapped Tezos FA2 token",
"main": "scripts/cli.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/madfish-solutions/wTEZ-fa2.git"
},
"author": "Illia Likhoshva <likhoshva@madfish.solutions>",
"license": "MIT",
"bugs": {
"url": "https://github.com/madfish-solutions/wTEZ-fa2/issues"
},
"homepage": "https://github.com/madfish-solutions/wTEZ-fa2#readme",
"dependencies": {
"@taquito/signer": "^12.0.0",
"@taquito/taquito": "^12.0.0",
"@types/node": "^17.0.31",
"@types/jest": "^27.5.0",
"chalk": "<5.0.0",
"commander": "^9.2.0",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"jest": "^28.0.3",
"ts-jest": "^28.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=16",
"yarn": ">=1.22.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2"
},
"scripts": {
"cli": "ts-node ./scripts/cli.ts",
"help": "yarn cli --help",
"start-sandbox": "yarn cli sandbox --up",
"stop-sandbox": "yarn cli sandbox --down",
"migrate": "yarn cli migrate",
"compile": "yarn compile-contract",
"compile-contract": "yarn cli compile -F json",
"test": "jest"
}
}