forked from Cyace84/ligo-taquito-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 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
45
46
47
48
49
50
51
52
53
{
"name": "Ligo-taquito-skeleton",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/repo.git"
},
"author": "e1",
"license": "ISC",
"bugs": {
"url": "https://github.com/repo/issues"
},
"homepage": "https://github.com/repo#readme",
"dependencies": {
"@taquito/signer": "^11.1.0",
"@taquito/taquito": "^11.1.0",
"@types/jest": "^27.0.2",
"chalk": "<5.0.0",
"commander": "^8.3.0",
"date-fns": "^2.25.0",
"dotenv": "^15.0.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=14",
"yarn": ">=1.22.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-jest-formatting": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1"
},
"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"
}
}